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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    }
}