ChromeBackground

Add your own custom background to Google.com

什么是ChromeBackground?

ChromeBackground是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Add your own custom background to Google.com”。

扩展截图

screenshot

下载ChromeBackground扩展crx文件

下载ChromeBackground扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Add custom background to https://www.gooogle.com/*                    

扩展基本信息

名称 ChromeBackground ChromeBackground
ID hiohpginbllenbjfohemjliffknnafnn
官方URL https://chromewebstore.google.com/detail/chromebackground/hiohpginbllenbjfohemjliffknnafnn
简介 Add your own custom background to Google.com
文件大小 1.44 MB
安装次数 18
当前版本 1.0.0
更新时间 2021-11-16
上架时间 2021-11-15
评分 5.00/5 共1次评分
开发者 Unknown
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/seanjyjy/chrome-bg
帮助页面URL https://github.com/seanjyjy/chrome-bg
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ChromeBackground",
    "description": "Add your own custom background to Google.com",
    "version": "1.0.0",
    "author": "Sean Lum",
    "icons": {
        "16": ".\/images\/background16.png",
        "48": ".\/images\/background48.png",
        "128": ".\/images\/background128.png"
    },
    "page_action": {
        "default_icon": ".\/images\/background16.png",
        "default_popup": "popup.html",
        "default_title": "Custom google chrome background"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/www.google.com\/*",
        "declarativeContent",
        "storage",
        "notifications",
        "webNavigation"
    ]
}