JS Inject

Create, save, and inject javascript code into web pages.

What is JS Inject?

JS Inject is a Chrome extension developed by https://bitwisecreative.com, and its main feature is "Create, save, and inject javascript code into web pages.".

Extension Screenshots

screenshot

Download JS Inject Extension CRX File

Download JS Inject 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

                        This extension allows you to write, save, and execute javascript into web pages. You can save scripts to be run globally (on any page), on a specific domain, on a specific page, or via a "URL contains" string. It uses the CodeMirror editor, configured for javascript editing, and includes both light and dark themes. All data is stored in localStorage.                    

Extension Basic Information

Name JS Inject JS Inject
ID pbicaeiggebhcjkenahlamdjgjhbbekc
Official URL https://chromewebstore.google.com/detail/js-inject/pbicaeiggebhcjkenahlamdjgjhbbekc
Description Create, save, and inject javascript code into web pages.
File Size 551 KB
Installation Count 559
Current Version 1.0.0
Last Updated 2019-11-01
Publish Date 2019-11-01
Developer https://bitwisecreative.com
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JS Inject",
    "version": "1.0.0",
    "description": "Create, save, and inject javascript code into web pages.",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "JS Inject",
        "default_icon": {
            "16": "images\/js-inject16.png",
            "32": "images\/js-inject32.png",
            "48": "images\/js-inject48.png",
            "128": "images\/js-inject128.png"
        }
    },
    "icons": {
        "16": "images\/js-inject16.png",
        "32": "images\/js-inject32.png",
        "48": "images\/js-inject48.png",
        "128": "images\/js-inject128.png"
    },
    "manifest_version": 2
}