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
官方URL 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"
    ]
}