Asset injector Google Chrome extension

Injects JS and CSS links for specific domains

Co to jest Asset injector Google Chrome extension?

Asset injector Google Chrome extension to rozszerzenie Chrome opracowane przez dimitry.mashkov, a jego główną funkcją jest „Injects JS and CSS links for specific domains”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Asset injector Google Chrome extension

Pobierz pliki rozszerzeń Asset injector Google Chrome extension 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

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

Podstawowe informacje o rozszerzeniu

Nazwa Asset injector Google Chrome extension Asset injector Google Chrome extension
ID obpidgojggdbmochnlgiejlhiepgfmpb
Oficjalny URL https://chromewebstore.google.com/detail/asset-injector-google-chr/obpidgojggdbmochnlgiejlhiepgfmpb
Opis Injects JS and CSS links for specific domains
Rozmiar pliku 7.77 KB
Liczba instalacji 163
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2018-05-21
Data Publikacji 2018-05-21
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper dimitry.mashkov
Typ Płatności free
Strona Rozszerzenia https://github.com/dmitry-mashkov/chrome-asset-injector
Obsługiwane Języki 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
}