Inject Javascript -- Synced & Open Source

Inject javascript in web pages, synced across your devices

Inject Javascript -- Synced & Open Source क्या है?

Inject Javascript -- Synced & Open Source quentin.bramas द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inject javascript in web pages, synced across your devices"।

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

screenshot

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

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

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

                        This extension allows you to add custom js to any web page.

Due to the critical risk of this kind of extension, I made this extension open source, and very small so that is it easy to check that it does not do anything bad.

https://github.com/Bramas/Synced-Injected-Scripts

Everything you type is automatically saved and synced.

You can use call the function `injectLibs([lib1url, lib2url, ...], calllback)` to inject libraries before your script                    

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

नाम Inject Javascript -- Synced & Open Source Inject Javascript -- Synced & Open Source
ID aechnpkbeoilkginaangjabdhcknecck
आधिकारिक URL https://chromewebstore.google.com/detail/inject-javascript-synced/aechnpkbeoilkginaangjabdhcknecck
विवरण Inject javascript in web pages, synced across your devices
फ़ाइल का आकार 538 KB
स्थापना संख्या 356
वर्तमान संस्करण 1.1
अंतिम अपडेट 2020-03-28
प्रकाशन तिथि 2020-03-26
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर quentin.bramas
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Bramas/Synced-Injected-Scripts
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inject Javascript -- Synced & Open Source",
    "version": "1.1",
    "description": "Inject javascript in web pages, synced across your devices",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "72": "images\/icon-72x72.png",
            "128": "images\/icon-128x128.png",
            "512": "images\/icon-512x512.png"
        }
    },
    "icons": {
        "72": "images\/icon-72x72.png",
        "128": "images\/icon-128x128.png",
        "512": "images\/icon-512x512.png"
    },
    "manifest_version": 2
}