ScriptFilter

__MSG_@manifest_description__

ScriptFilter란 무엇입니까?

ScriptFilter은(는) Baptiste Thémine에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "__MSG_@manifest_description__"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

ScriptFilter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
    }
}