Javascript Injector

Inject javascript to the webpage you are visiting

Javascript Injector क्या है?

Javascript Injector Daniel Han द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inject javascript to the webpage you are visiting"।

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

screenshot
screenshot
screenshot

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

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

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

                        This extension allows you to inject any javascript code into the web page you are visiting. It remembers your page specific script and syncs it across all your devices.

For example, if you want to change the background color of https://duckduckgo.com/ with light blue, you can inject the script 'document.body.style.backgroundColor = "lightblue";' using this extension. After that every time you open this web site, the back ground will be light blue automatically.                    

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

नाम Javascript Injector Javascript Injector
ID ejnccfcackblkelbafbolcpjfpcmbplg
आधिकारिक URL https://chromewebstore.google.com/detail/javascript-injector/ejnccfcackblkelbafbolcpjfpcmbplg
विवरण Inject javascript to the webpage you are visiting
फ़ाइल का आकार 59.53 KB
स्थापना संख्या 2,000
वर्तमान संस्करण 1.2
अंतिम अपडेट 2017-06-16
प्रकाशन तिथि 2017-06-16
रेटिंग 4.13/5 कुल 8 रेटिंग्स
डेवलपर Daniel Han
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/hex0cter/js-injector
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Javascript Injector",
    "author": "Daniel Han",
    "short_name": "JS injector",
    "description": "Inject javascript to the webpage you are visiting",
    "version": "1.2",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Javascript Injector",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}