Neopets Shop Highlighter

Highlights items in Neopets shops that appear on page refresh

O que é Neopets Shop Highlighter?

Neopets Shop Highlighter é uma extensão do Chrome desenvolvida por Elizabeth Harper, e sua principal característica é "Highlights items in Neopets shops that appear on page refresh".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Neopets Shop Highlighter

Baixe arquivos de extensão Neopets Shop Highlighter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Neopets Shop Highlighter Neopets Shop Highlighter
ID aeflneddfelkgikdfnmgiabepophecje
URL Oficial https://chromewebstore.google.com/detail/neopets-shop-highlighter/aeflneddfelkgikdfnmgiabepophecje
Descrição Highlights items in Neopets shops that appear on page refresh
Tamanho do Arquivo 179 KB
Contagem de Instalações 760
Versão Atual 1.10.3
Última Atualização 2021-03-28
Data de Publicação 2020-03-01
Classificação 4.80/5 Total de 5 Avaliações
Desenvolvedor Elizabeth Harper
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Foxcapades/np-shop-highlight
URL da Página de Ajuda https://github.com/Foxcapades/np-shop-highlight/issues
Idiomas Suportados 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"
    }
}