ChromeBackground

Add your own custom background to Google.com

Co to jest ChromeBackground?

ChromeBackground to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Add your own custom background to Google.com”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ChromeBackground

Pobierz pliki rozszerzeń ChromeBackground w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa ChromeBackground ChromeBackground
ID hiohpginbllenbjfohemjliffknnafnn
Oficjalny URL https://chromewebstore.google.com/detail/chromebackground/hiohpginbllenbjfohemjliffknnafnn
Opis Add your own custom background to Google.com
Rozmiar pliku 1.44 MB
Liczba instalacji 18
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2021-11-16
Data Publikacji 2021-11-15
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Unknown
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/seanjyjy/chrome-bg
Adres URL Strony Pomocy https://github.com/seanjyjy/chrome-bg
Obsługiwane Języki 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"
    ]
}