Skip to content

Commit

Permalink
Use a wrench emoji for the Options item.
Browse files Browse the repository at this point in the history
Otherwise the control knob is used twice.
  • Loading branch information
dstein64 committed Oct 30, 2021
1 parent 76b2718 commit 0bfd58a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Auto Highlight",
"version": "3.4.6",
"version": "3.4.7",
"description": "*Auto Highlight* automatically highlights the important content on article pages.",
"options_ui": {
"page": "src/options/options.html"
Expand Down
2 changes: 1 addition & 1 deletion src/eventPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ chrome.permissions.onRemoved.addListener(function() {
'32': 'icons/options32x32.png',
}
} else {
properties.title = String.fromCodePoint('0x1F39B') + ' ' + properties.title;
properties.title = String.fromCodePoint('0x1F527') + ' ' + properties.title;
}
chrome.contextMenus.create(properties);
}
Expand Down

0 comments on commit 0bfd58a

Please sign in to comment.