Inject JS

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

Qu'est-ce que Inject JS ?

Inject JS est une extension Chrome développée par dailenspencer12, et sa fonction principale est "This extension will inject javascript from a URL into the current webpage".

Télécharger le fichier CRX de l'extension Inject JS

Téléchargez les fichiers d'extension Inject JS au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                                            

Informations de Base sur l'Extension

Nom Inject JS Inject JS
ID ppbefedgpemhmbmiehiodeobnoekdhfo
URL Officiel https://chrome.google.com/webstore/detail/inject-js/ppbefedgpemhmbmiehiodeobnoekdhfo
Description This extension will inject javascript from a URL into the current webpage
Taille du Fichier 40.14 KB
Nombre d'Installations 80
Version Actuelle 1.1
Dernière Mise à Jour 2016-09-29
Date de Publication 2016-09-29
Développeur dailenspencer12
Type de Paiement free
Langues Prises en Charge 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"
    ]
}