Skip to content

Commit d73f693

Browse files
committed
Switch back to the wrench icon.
The gear emoji is displayed as the small version on Chrome on Ubuntu, even with the variation selector-16 character (0xFE0F). https://bugs.chromium.org/p/chromium/issues/detail?id=964527 https://bugs.chromium.org/p/chromium/issues/detail?id=491556
1 parent 000053c commit d73f693

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Auto Highlight",
3-
"version": "3.4.8",
3+
"version": "3.4.9",
44
"description": "*Auto Highlight* automatically highlights the important content on article pages.",
55
"options_ui": {
66
"page": "src/options/options.html"

src/eventPage.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -568,10 +568,7 @@ chrome.permissions.onRemoved.addListener(function() {
568568
'32': 'icons/options32x32.png',
569569
}
570570
} else {
571-
// The variation selector-16 character (0xFE0F) is used so that the gear is
572-
// shown with emoji presentation. Otherwise, it's small (observed on macOS).
573-
const gear = String.fromCodePoint('0x2699') + String.fromCodePoint('0xFE0F');
574-
properties.title = gear + ' ' + properties.title;
571+
properties.title = String.fromCodePoint('0x1F527') + ' ' + properties.title;
575572
}
576573
chrome.contextMenus.create(properties);
577574
}

0 commit comments

Comments
 (0)