Skip to content

Commit

Permalink
v1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
adokseo committed Feb 13, 2021
1 parent ea9966e commit c13d6be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions content-scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,9 @@ window.addEventListener('keydown', function(event) {

chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
if (request.name === 1) {
current_regex = new RegExp(request.value, 'g');
current_regex = new RegExp(request.value, 'gi');
selected_index = 0;

console.log(request.value);

clear();
search(document.body, sendCount);
select();
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Regex Search",
"version": "1.1",
"version": "1.2",
"icons": {
"16": "assets/icons/16.png",
"32": "assets/icons/32.png",
Expand Down Expand Up @@ -34,4 +34,4 @@
}
}
}
}
}

0 comments on commit c13d6be

Please sign in to comment.