InjectCode

Store and inject code to browser pages made super easy.

Qu'est-ce que InjectCode ?

InjectCode est une extension Chrome développée par https://jaak.kytt.ee, et sa fonction principale est "Store and inject code to browser pages made super easy.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension InjectCode

Téléchargez les fichiers d'extension InjectCode 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

                        For developers who have to deal with sites to which they don't have code side access to. Easily store and inject JavaScript snippets into pages, enhance usability or manipulate data in several open tabs at once.

Features:
* create, edit, delete, sort, name and enable/disable your scripts
* syntax highlighter and autosave
* scripts are stored locally and persist throughout sessions
* run a specific script or all that are marked as active
* change scope to run scripts on the current or on all open tabs
* scripts are injected into the pages after document.ready
* includes jQuery
* added global function openTab(url) to open a new tab within your script (avoid recursion)
* added global XhrMonitor object for working with ajax pages

1.1.0:
* added global InjectCode object which is exported into the content pages (allowing to use attached methods in the Chrome console)

1.1.1:
* removed unused storage permission request

Source available at https://github.com/jaakkytt/InjectCode.                    

Informations de Base sur l'Extension

Nom InjectCode InjectCode
ID flhghpihapijancfhnicbnjifdodohpi
URL Officiel https://chromewebstore.google.com/detail/injectcode/flhghpihapijancfhnicbnjifdodohpi
Description Store and inject code to browser pages made super easy.
Taille du Fichier 215 KB
Nombre d'Installations 2,341
Version Actuelle 1.1.1
Dernière Mise à Jour 2021-04-26
Date de Publication 2015-04-01
Évaluation 4.65/5 Total 26 Évaluations
Développeur https://jaak.kytt.ee
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://jaak.kytt.ee/blog/injectcode
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "InjectCode",
    "description": "Store and inject code to browser pages made super easy.",
    "version": "1.1.1",
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/inject32.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/inject16.png",
        "48": "img\/inject48.png",
        "128": "img\/inject128.png"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery-1.10.2.min.js",
                "js\/help_content_script.js",
                "js\/run_content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}