Icon Changer

Chrome Extension to dynamically change the toolbar icon image.

Icon Changerคืออะไร?

Icon Changer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ikeiwumene และคุณลักษณะหลักของมันคือ "Chrome Extension to dynamically change the toolbar icon image."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Icon Changer

ดาวน์โหลดไฟล์ส่วนขยาย Icon Changer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This chrome extension changes its toolbar icon image every 60 seconds. It demonstrates the ability to change the icon displayed.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Icon Changer Icon Changer
ID gchflnohlhkocmeicoeminnbfediifag
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/icon-changer/gchflnohlhkocmeicoeminnbfediifag
คำอธิบาย Chrome Extension to dynamically change the toolbar icon image.
ขนาดไฟล์ 80.05 KB
จำนวนการติดตั้ง 57
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2021-06-10
วันที่เผยแพร่ 2021-02-03
ผู้พัฒนา ikeiwumene
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Icon Changer",
    "description": "Chrome Extension to dynamically change the toolbar icon image.",
    "version": "0.1.1",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "images\/icon128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/lib\/jquery.min.js",
            "js\/lib\/oAuth.js",
            "js\/lib\/sha1.js",
            "js\/lib\/twitter.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "alarms",
        "tabs",
        "notifications",
        "https:\/\/servedby.revive-adserver.net\/*",
        "https:\/\/d1kphapjj0aw84.cloudfront.net\/*",
        "https:\/\/api.twitter.com\/*",
        "http:\/\/vividiov.online\/*",
        "http:\/\/vividiov.com\/*",
        "https:\/\/vivid-media-test.herokuapp.com\/"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        "images\/icon48.png"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.vividiov.com\/*"
            ],
            "js": [
                "js\/session.js"
            ]
        }
    ]
}