ScriptFilter

__MSG_@manifest_description__

ScriptFilter क्या है?

ScriptFilter Baptiste Thémine द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "__MSG_@manifest_description__"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Blocks scripts and resources from a website with Content Security Policy.

ScriptFilter is a simple and lightweight add-on designed with WebExtensions API and compatible with Firefox, Chrome and Opera.
You just need to click on the add-on button or right-click in a page to block scripts in a tab.

You can access the Settings page via "about:addons" (Firefox), via "chrome://extensions" (Chrome & Opera) or via the add-on button context menu.
It permits you to decide which resources are blocked or restricted by Content Security Policy such as JavaScript, CSS, images, videos, frames...
It is also possible to create a black list in order to block resources when you go to a specific website.

Language support : English, French, Italian, Spanish.
Browser support : Firefox 52+, Firefox Android 57+, Chrome 42+, Opera 33+.                    

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

नाम ScriptFilter ScriptFilter
ID ljmpgckeehellmpepbfikjbmeepdepfh
आधिकारिक URL https://chromewebstore.google.com/detail/scriptfilter/ljmpgckeehellmpepbfikjbmeepdepfh
विवरण __MSG_@manifest_description__
फ़ाइल का आकार 63.86 KB
स्थापना संख्या 39
वर्तमान संस्करण 4.1
अंतिम अपडेट 2018-07-14
प्रकाशन तिथि 2018-07-14
डेवलपर Baptiste Thémine
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Baptistou/ScriptFilter
सहायता पृष्ठ URL https://github.com/Baptistou/ScriptFilter
समर्थित भाषाएँ en,fr,es,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ScriptFilter",
    "version": "4.1",
    "author": "Baptiste Th\u00e9mine",
    "homepage_url": "https:\/\/github.com\/Baptistou\/ScriptFilter",
    "description": "__MSG_@manifest_description__",
    "default_locale": "en",
    "permissions": [
        "",
        "contextMenus",
        "storage",
        "tabs",
        "webRequest",
        "webRequestBlocking"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png"
    },
    "background": {
        "scripts": [
            "functions.js",
            "webext.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "ScriptFilter",
        "default_icon": "images\/icon64.png"
    },
    "options_ui": {
        "page": "settings\/index.html",
        "open_in_tab": true
    }
}