Asset injector Google Chrome extension

Injects JS and CSS links for specific domains

Asset injector Google Chrome extensionとは何ですか?

Asset injector Google Chrome extensionはdimitry.mashkovによって開発されたChromeの拡張機能で、その主な機能は「Injects JS and CSS links for specific domains」です。

拡張機能のスクリーンショット

screenshot

Asset injector Google Chrome extension拡張機能のCRXファイルをダウンロード

Asset injector Google Chrome extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Asset injector Google Chrome extension Asset injector Google Chrome extension
ID obpidgojggdbmochnlgiejlhiepgfmpb
公式URL https://chromewebstore.google.com/detail/asset-injector-google-chr/obpidgojggdbmochnlgiejlhiepgfmpb
説明 Injects JS and CSS links for specific domains
ファイルサイズ 7.77 KB
インストール数 163
現在のバージョン 1.1
最終更新日 2018-05-21
公開日 2018-05-21
評価 4.00/5 合計 1 レビュー
開発者 dimitry.mashkov
支払い方法 free
拡張機能のウェブサイト https://github.com/dmitry-mashkov/chrome-asset-injector
対応言語 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
}