Neopets Shop Highlighter

Highlights items in Neopets shops that appear on page refresh

Neopets Shop Highlighterคืออะไร?

Neopets Shop Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Elizabeth Harper และคุณลักษณะหลักของมันคือ "Highlights items in Neopets shops that appear on page refresh"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Neopets Shop Highlighter

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}