Neopets Shop Highlighter
Highlights items in Neopets shops that appear on page refresh
What is Neopets Shop Highlighter?
Neopets Shop Highlighter is a Chrome extension developed by Elizabeth Harper, and its main feature is "Highlights items in Neopets shops that appear on page refresh".
Extension Screenshots
Download Neopets Shop Highlighter Extension CRX File
Download Neopets Shop Highlighter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Adds a searchable shop list and customizable highlighting to items in Neopets shops based on user set criteria. Allows: - Highlighting items added to shops by mini stocks - Highlighting items based on custom item lists (supporting wildcards) - Customizing the way different items or lists are highlighted - Quickly search for any shop by it's name (Alt+M to activate shop search) See the homepage for more detailed info.
Extension Basic Information
Name | Neopets Shop Highlighter |
ID | aeflneddfelkgikdfnmgiabepophecje |
Official URL | https://chromewebstore.google.com/detail/neopets-shop-highlighter/aeflneddfelkgikdfnmgiabepophecje |
Description | Highlights items in Neopets shops that appear on page refresh |
File Size | 179 KB |
Installation Count | 760 |
Current Version | 1.10.3 |
Last Updated | 2021-03-28 |
Publish Date | 2020-03-01 |
Rating | 4.80/5 Total 5 Ratings |
Developer | Elizabeth Harper |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Foxcapades/np-shop-highlight |
Help Page URL | https://github.com/Foxcapades/np-shop-highlight/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Neopets Shop Highlighter", "description": "Highlights items in Neopets shops that appear on page refresh", "version": "1.10.3", "permissions": [ "storage", "activeTab" ], "content_scripts": [ { "matches": [ "*:\/\/*.neopets.com\/*" ], "js": [ "active-tab.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "action-menu.html" }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Alt+M", "mac": "Alt+M", "chromeos": "Alt+M", "linux": "Alt+M" } } }, "options_page": "settings-menu.html", "icons": { "16": "res\/icon-16.png", "48": "res\/icon-48.png", "128": "res\/icon-128.png", "256": "res\/icon-256.png" } } |