Inject Code

Inject your own code into any webpage

Inject Code क्या है?

Inject Code Yehuda Moskowitz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inject your own code into any webpage"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Write JS/JSX/CSS snippets that can be executed by click of a button.

Features:
*    Custom code or link to an external library
*    Filter on specific URL's
*    Auto run
*    Filter auto run on specific URL's
*    Simple interface
*    Write/Update in separate tab while testing on web page
*    Toggle horizontal/vertical split view in edit mode
*    Toggle full screen in edit mode
*    Choose whether to run in all frames                    

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

नाम Inject Code Inject Code
ID jpbbdgndcngomphbmplabjginoihkdph
आधिकारिक URL https://chromewebstore.google.com/detail/inject-code/jpbbdgndcngomphbmplabjginoihkdph
विवरण Inject your own code into any webpage
फ़ाइल का आकार 4.68 MB
स्थापना संख्या 1,066
वर्तमान संस्करण 1.0.4.7
अंतिम अपडेट 2024-01-04
प्रकाशन तिथि 2018-12-18
रेटिंग 4.89/5 कुल 9 रेटिंग्स
डेवलपर Yehuda Moskowitz
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Inject Code",
    "manifest_version": 2,
    "name": "Inject Code",
    "version": "1.0.4.7",
    "description": "Inject your own code into any webpage",
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": "images\/inject.png",
        "default_title": "Inject Code Snippets"
    },
    "options_page": "index.html?page=options",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
    "web_accessible_resources": [],
    "permissions": [
        "activeTab",
        "storage",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "babel.js",
                "content.js"
            ],
            "all_frames": true
        }
    ]
}