Neopets Shop Highlighter

Highlights items in Neopets shops that appear on page refresh

什麼是Neopets Shop Highlighter?

Neopets Shop Highlighter是由Elizabeth Harper開發的Chrome擴展程式,該擴展的主要功能是“Highlights items in Neopets shops that appear on page refresh”。

擴展截圖

screenshot
screenshot
screenshot

下載Neopets Shop Highlighter擴展crx文件

下載Neopets Shop Highlighter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 Neopets Shop Highlighter
ID aeflneddfelkgikdfnmgiabepophecje
官方網址 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"
    }
}