Code Injector

Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.

What is Code Injector?

Code Injector is a Chrome extension developed by Melwyn Pawar, and its main feature is "Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.".

Extension Screenshots

screenshot
screenshot

Download Code Injector Extension CRX File

Download Code Injector 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

                        Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages to make design and developmental decisions quickly.                    

Extension Basic Information

Name Code Injector Code Injector
ID ffpbejkllpoglbeeabibelceofidjfhk
Official URL https://chrome.google.com/webstore/detail/code-injector/ffpbejkllpoglbeeabibelceofidjfhk
Description Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.
File Size 293 KB
Installation Count 121
Current Version 1.4
Last Updated 2017-12-21
Publish Date 2017-12-21
Rating 1.00/5 Total 1 Ratings
Developer Melwyn Pawar
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.example.com\/*"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "allLibs.js"
            ],
            "matches": [
                ""
            ],
            "css": [
                "inject.css"
            ]
        }
    ],
    "description": "Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.",
    "icons": {
        "128": "l1.png",
        "16": "icon.png",
        "48": "l2.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Script Injector"
    },
    "web_accessible_resources": [
        "images\/pagebreak.png",
        "images\/pagebreak_alone.png"
    ],
    "manifest_version": 2,
    "name": "Code Injector",
    "permissions": [
        "tabs",
        "",
        "background"
    ],
    "version": "1.4"
}