Neopets Shop Highlighter
Highlights items in Neopets shops that appear on page refresh
Cos'è Neopets Shop Highlighter?
Neopets Shop Highlighter è un'estensione di Chrome sviluppata da Elizabeth Harper, e la sua funzione principale è "Highlights items in Neopets shops that appear on page refresh".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Neopets Shop Highlighter
Scarica i file di estensione Neopets Shop Highlighter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | aeflneddfelkgikdfnmgiabepophecje |
| URL Ufficiale | https://chromewebstore.google.com/detail/neopets-shop-highlighter/aeflneddfelkgikdfnmgiabepophecje |
| Descrizione | Highlights items in Neopets shops that appear on page refresh |
| Dimensione del File | 179 KB |
| Conteggio Installazioni | 760 |
| Versione Corrente | 1.10.3 |
| Ultimo Aggiornamento | 2021-03-28 |
| Data di Pubblicazione | 2020-03-01 |
| Valutazione | 4.80/5 Totale 5 Valutazioni |
| Sviluppatore | Elizabeth Harper |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/Foxcapades/np-shop-highlight |
| URL della Pagina di Aiuto | https://github.com/Foxcapades/np-shop-highlight/issues |
| Lingue Supportate | 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"
}
} | |