Asset injector Google Chrome extension

Injects JS and CSS links for specific domains

What is Asset injector Google Chrome extension?

Asset injector Google Chrome extension is a Chrome extension developed by dimitry.mashkov, and its main feature is "Injects JS and CSS links for specific domains".

Extension Screenshots

screenshot

Download Asset injector Google Chrome extension Extension CRX File

Download Asset injector Google Chrome extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Asset injector Google Chrome extension Asset injector Google Chrome extension
ID obpidgojggdbmochnlgiejlhiepgfmpb
Official URL https://chromewebstore.google.com/detail/asset-injector-google-chr/obpidgojggdbmochnlgiejlhiepgfmpb
Description Injects JS and CSS links for specific domains
File Size 7.77 KB
Installation Count 163
Current Version 1.1
Last Updated 2018-05-21
Publish Date 2018-05-21
Rating 4.00/5 Total 1 Ratings
Developer dimitry.mashkov
Payment Type free
Extension Website https://github.com/dmitry-mashkov/chrome-asset-injector
Supported Languages 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
}