Deviantart.com Favicon Override

Overrides the default favicon for deviantart.com with the old, far superior favicon.

什麼是Deviantart.com Favicon Override?

Deviantart.com Favicon Override是由crimsonmango開發的Chrome擴展程式,該擴展的主要功能是“Overrides the default favicon for deviantart.com with the old, far superior favicon.”。

下載Deviantart.com Favicon Override擴展crx文件

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

擴展使用說明

                                            

擴展基本資訊

名稱 Deviantart.com Favicon Override Deviantart.com Favicon Override
ID nahcoedmigigijfonehkkbnbgoopgmnl
官方網址 https://chromewebstore.google.com/detail/deviantartcom-favicon-ove/nahcoedmigigijfonehkkbnbgoopgmnl
簡介 Overrides the default favicon for deviantart.com with the old, far superior favicon.
檔案大小 8.47 KB
安裝次數 49
目前版本 1.0
更新時間 2016-09-07
上架時間 2016-09-06
評分 5.00/5 共 2 次評分
開發者 crimsonmango
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "favicon.png"
    },
    "description": "Overrides the default favicon for deviantart.com with the old, far superior favicon.",
    "name": "Deviantart.com Favicon Override",
    "version": "1.0",
    "permissions": [
        "tabs",
        ""
    ],
    "icons": {
        "16": "favicon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.deviantart.com\/*"
            ],
            "js": [
                "injectCustomFavicon.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "favicon.png"
    ]
}