Javascript injection

Inject external js files into a page in order to extend or modify functionality

What is Javascript injection?

Javascript injection is a Chrome extension developed by [email protected], and its main feature is "Inject external js files into a page in order to extend or modify functionality".

Download Javascript injection Extension CRX File

Download Javascript injection 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

                                            

Extension Basic Information

Name Javascript injection Javascript injection
ID anblbolcglfjebndjmgnelligobpebpf
Official URL https://chrome.google.com/webstore/detail/javascript-injection/anblbolcglfjebndjmgnelligobpebpf
Description Inject external js files into a page in order to extend or modify functionality
File Size 25.78 KB
Installation Count 77
Current Version 1.0
Last Updated 2015-08-08
Publish Date 2015-08-08
Rating 5.00/5 Total 1 Ratings
Developer [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Javascript injection",
    "version": "1.0",
    "description": "Inject external js files into a page in order to extend or modify functionality",
    "browser_action": {
        "default_title": "Javascript injection",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2,
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "js": [
                "contentscript.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        "tabs"
    ],
    "content_security_policy": "script-src 'self' https:\/\/*.googleapis.com; object-src 'self'"
}