jQuery Injector

Inject jQuery into all frames on any page.

jQuery Injector क्या है?

jQuery Injector attilathedud द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inject jQuery into all frames on any page."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        jQuery Injector allows you to inject jQuery into every frame on a page so that you can use jQuery in the dev console. 

Features:
- Set the jQuery URL to inject any version you want.
- Specify websites and page patterns to automatically inject into.
- Entry in context-menu to make injection even easier.

v1.1.2 Changelog
- Bumped the default jQuery version to 3.5.0

v1.1.1 Changelog
- Bumped the default jQuery version to 3.3.1.

v1.1.0 Changelog
- Added the option to delete previous jQuery versions when injecting.
- Added an indicator for when jQuery is already present on the page.
- Added link to Options screen in the popup options panel.
- Bumped the default jQuery version to 3.2.1.
- Fixed a bug where the head tag would be placed after the body tag on pages with no original head tag.
- Fixed some styling/UI issues.

v1.0.1 Changelog
- Added a context-menu entry for embedded pdfs.
- Fixed a bug that made it impossible to inject into pages with no head tag.
- Fixed font-rendering in settings for newer Chrome versions.

Code is available at: https://github.com/attilathedud/jQueryInjector                    

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

नाम jQuery Injector jQuery Injector
ID ekkjohcjbjcjjifokpingdbdlfekjcgi
आधिकारिक URL https://chromewebstore.google.com/detail/jquery-injector/ekkjohcjbjcjjifokpingdbdlfekjcgi
विवरण Inject jQuery into all frames on any page.
फ़ाइल का आकार 57.7 KB
स्थापना संख्या 11,969
वर्तमान संस्करण 1.1.2
अंतिम अपडेट 2020-05-03
प्रकाशन तिथि 2020-05-01
रेटिंग 4.36/5 कुल 25 रेटिंग्स
डेवलपर attilathedud
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/attilathedud/jQueryInjector
सहायता पृष्ठ URL https://github.com/attilathedud/jQueryInjector
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "jQuery Injector",
    "short_name": "jQueryInjector",
    "version": "1.1.2",
    "description": "Inject jQuery into all frames on any page.",
    "browser_action": {
        "name": "jQuery Injector",
        "default_popup": "pages\/popup_settings.html"
    },
    "icons": {
        "16": "imgs\/logo16.png",
        "48": "imgs\/logo48.png",
        "128": "imgs\/logo128.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_page": "pages\/settings.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/injected.js"
            ],
            "all_frames": true
        }
    ]
}