Browser Injector

Injects CSS and Javascript into pages.

Browser Injector क्या है?

Browser Injector pearnaly द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Injects CSS and Javascript into pages."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        With this plugin, on your frequently visited webpages you can right click on blocks you want to customise (most frequently just hide) to generate easily a small CSS rule to inject. You can also write Javascript code to inject.

Features:
* Auto-generation of a full CSS Selector you can easily adjust.
* The CSS and Javascript rules are synchronized across your devices with your browser account (if you have one)!
* Json Import/Export of the rules
* 4 languages (en, de, fr, it)
* Dark theme supported
* Also available for Firefox: https://addons.mozilla.org/firefox/addon/browser-injector                    

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

नाम Browser Injector Browser Injector
ID ledhhmfbjmdkeaabnnkagbkbcilfdgim
आधिकारिक URL https://chromewebstore.google.com/detail/browser-injector/ledhhmfbjmdkeaabnnkagbkbcilfdgim
विवरण Injects CSS and Javascript into pages.
फ़ाइल का आकार 540 KB
स्थापना संख्या 74
वर्तमान संस्करण 1.9.8
अंतिम अपडेट 2021-07-05
प्रकाशन तिथि 2021-04-25
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर pearnaly
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ de,en,fr,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "version": "1.9.8",
    "manifest_version": 2,
    "description": "__MSG_extensionDescription__",
    "author": "Paul-\u00c9mile Arnaly",
    "homepage_url": "https:\/\/github.com\/pearnaly\/browser-injetor",
    "icons": {
        "16": "\/icons\/icon-16x16.png",
        "24": "\/icons\/icon-24x24.png",
        "32": "\/icons\/icon-32x32.png",
        "48": "\/icons\/icon-48x48.png",
        "128": "\/icons\/icon-128x128.png"
    },
    "options_ui": {
        "page": "\/index.html#\/options"
    },
    "background": {
        "page": "\/index.html#\/background",
        "persistent": true
    },
    "chrome_style": true,
    "browser_action": {
        "default_title": "__MSG_extensionName__",
        "default_popup": "\/index.html#\/popup",
        "default_icon": {
            "16": "\/icons\/icon-16x16.png",
            "24": "\/icons\/icon-24x24.png",
            "32": "\/icons\/icon-32x32.png",
            "48": "\/icons\/icon-48x48.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "injector.js"
            ]
        }
    ],
    "commands": {
        "toggle_active": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "__MSG_commandToggleActive__"
        },
        "toggle_tab_active": {
            "suggested_key": {
                "default": "Alt+T"
            },
            "description": "__MSG_commandToggleTabActive__"
        },
        "open_rules": {
            "description": "__MSG_commandOpenRules__"
        },
        "open_detached_panel": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "__MSG_commandOpenDetachedPanel__"
        },
        "new_quick_rule_picker": {
            "suggested_key": {
                "default": "Alt+N"
            },
            "description": "__MSG_commandNewQuickRulePicker__"
        }
    },
    "permissions": [
        "contextMenus",
        "storage",
        "tabs",
        "*:\/\/*\/*"
    ],
    "browser_specific_settings": [],
    "default_locale": "en"
}