Inject JS

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

Wat is Inject JS?

Inject JS is een Chrome-extensie ontwikkeld door dailenspencer12, en de belangrijkste functie is "This extension will inject javascript from a URL into the current webpage".

Download het CRX-bestand van de extensie Inject JS

Download Inject JS-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                                            

Basisinformatie over de Extensie

Naam Inject JS Inject JS
ID ppbefedgpemhmbmiehiodeobnoekdhfo
Officiële URL https://chrome.google.com/webstore/detail/inject-js/ppbefedgpemhmbmiehiodeobnoekdhfo
Beschrijving This extension will inject javascript from a URL into the current webpage
Bestandsgrootte 40.14 KB
Aantal Installaties 80
Huidige Versie 1.1
Laatst Bijgewerkt 2016-09-29
Publicatiedatum 2016-09-29
Ontwikkelaar dailenspencer12
Betalingswijze free
Ondersteunde Talen 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"
    ]
}