Asset injector Google Chrome extension

Injects JS and CSS links for specific domains

Co je Asset injector Google Chrome extension?

Asset injector Google Chrome extension je rozšíření Chrome vyvinuté dimitry.mashkov, a jeho hlavní funkcí je „Injects JS and CSS links for specific domains“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Asset injector Google Chrome extension

Stáhněte si soubory rozšíření Asset injector Google Chrome extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Inserts specified CSS URL and/or JS URL
Applies only to specified domain name                    

Základní Informace o Rozšíření

Název Asset injector Google Chrome extension Asset injector Google Chrome extension
ID obpidgojggdbmochnlgiejlhiepgfmpb
Oficiální URL https://chromewebstore.google.com/detail/asset-injector-google-chr/obpidgojggdbmochnlgiejlhiepgfmpb
Popis Injects JS and CSS links for specific domains
Velikost souboru 7.77 KB
Počet instalací 163
Aktuální Verze 1.1
Poslední Aktualizace 2018-05-21
Datum Vydání 2018-05-21
Hodnocení 4.00/5 Celkem 1 Hodnocení
Vývojář dimitry.mashkov
Typ Platby free
Webové stránky Rozšíření https://github.com/dmitry-mashkov/chrome-asset-injector
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Asset injector Google Chrome extension",
    "version": "1.1",
    "description": "Injects JS and CSS links for specific domains",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "injector.servis.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/icon-disabled.png",
        "default_title": "Asset injector",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "manifest_version": 2
}