Inject JS

This extension will inject javascript from a URL into the current webpage

Vad är Inject JS?

Inject JS är en Chrome-tillägg utvecklad av dailenspencer12, och dess huvudfunktion är "This extension will inject javascript from a URL into the current webpage".

Ladda ner Inject JS-förlängningens CRX-fil

Ladda ner Inject JS-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                                            

Grundläggande Information om Tillägg

Namn Inject JS Inject JS
ID ppbefedgpemhmbmiehiodeobnoekdhfo
Officiell webbadress https://chrome.google.com/webstore/detail/inject-js/ppbefedgpemhmbmiehiodeobnoekdhfo
Beskrivning This extension will inject javascript from a URL into the current webpage
Filstorlek 40.14 KB
Antal Installationer 80
Aktuell Version 1.1
Senast Uppdaterad 2016-09-29
Publiceringsdatum 2016-09-29
Utvecklare dailenspencer12
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Inject JS",
    "description": "This extension will inject javascript from a URL into the current webpage",
    "version": "1.1",
    "browser_action": {
        "default_icon": "rocket.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "popup.js"
            ]
        }
    ],
    "icons": {
        "128": "rocket128.png"
    },
    "permissions": [
        "activeTab"
    ]
}