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
Eメール [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"
    ]
}