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