Neopets Shop Highlighter
Highlights items in Neopets shops that appear on page refresh
Neopets Shop Highlighter क्या है?
Neopets Shop Highlighter Elizabeth Harper द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Highlights items in Neopets shops that appear on page refresh"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Neopets Shop Highlighter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Neopets Shop Highlighter |
ID | aeflneddfelkgikdfnmgiabepophecje |
आधिकारिक URL | https://chromewebstore.google.com/detail/neopets-shop-highlighter/aeflneddfelkgikdfnmgiabepophecje |
विवरण | Highlights items in Neopets shops that appear on page refresh |
फ़ाइल का आकार | 179 KB |
स्थापना संख्या | 760 |
वर्तमान संस्करण | 1.10.3 |
अंतिम अपडेट | 2021-03-28 |
प्रकाशन तिथि | 2020-03-01 |
रेटिंग | 4.80/5 कुल 5 रेटिंग्स |
डेवलपर | Elizabeth Harper |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/Foxcapades/np-shop-highlight |
सहायता पृष्ठ URL | https://github.com/Foxcapades/np-shop-highlight/issues |
समर्थित भाषाएँ | 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" } } |