InjectCode

Store and inject code to browser pages made super easy.

InjectCode क्या है?

InjectCode https://jaak.kytt.ee द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Store and inject code to browser pages made super easy."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में InjectCode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम InjectCode InjectCode
ID flhghpihapijancfhnicbnjifdodohpi
आधिकारिक URL https://chromewebstore.google.com/detail/injectcode/flhghpihapijancfhnicbnjifdodohpi
विवरण Store and inject code to browser pages made super easy.
फ़ाइल का आकार 215 KB
स्थापना संख्या 2,341
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2021-04-26
प्रकाशन तिथि 2015-04-01
रेटिंग 4.65/5 कुल 26 रेटिंग्स
डेवलपर https://jaak.kytt.ee
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://jaak.kytt.ee/blog/injectcode
समर्थित भाषाएँ 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:\/\/*\/*"
            ]
        }
    ]
}