ScriptBlock

A smart extension that controls javascript, iframes, and plugins on Google Chrome.

ScriptBlock란 무엇입니까?

ScriptBlock은(는) compvid30에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A smart extension that controls javascript, iframes, and plugins on Google Chrome."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Scriptblock is an extension that provides better control of javascript, iframes and other unwanted content.

It even can midigate cross-site-scripting(XXS) attacks and drive-by-downloads.

ScriptBlock works perfectly together with other extensions like AdBlock, AdBlock Plus or Ghostery.

You can add your trusted sites to a whitelist, so they will not be affected by ScriptBlock.

If you like this extension, please support me and click on the donate button or give me a good review in chrome web store. :)

For bug reports please go to: https://github.com/compvid30/scriptblock                    

확장 프로그램 기본 정보

이름 ScriptBlock ScriptBlock
ID hcdjknjpbnhdoabbngpmfekaecnpajba
공식 URL https://chromewebstore.google.com/detail/scriptblock/hcdjknjpbnhdoabbngpmfekaecnpajba
설명 A smart extension that controls javascript, iframes, and plugins on Google Chrome.
파일 크기 161 KB
설치 횟수 43,296
현재 버전 1.5
최근 업데이트 2018-06-14
출시 날짜 2018-06-13
평점 3.98/5 총 444 개의 평점
개발자 compvid30
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/compvid30/scriptblock
도움말 페이지 URL https://github.com/compvid30/scriptblock
개인정보 보호 정책 페이지 URL https://github.com/compvid30/scriptblock/wiki/Privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "common\/sjcl.js",
                "CHANGE__PASSWORD__HERE.js",
                "common\/common.js",
                "blockStart.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "js": [
                "blockAfter.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "A smart extension that controls javascript, iframes, and plugins on Google Chrome.",
    "icons": {
        "128": "img\/icon128.png",
        "16": "img\/icon16.png",
        "19": "img\/forbidden.png",
        "48": "img\/icon48.png"
    },
    "name": "ScriptBlock",
    "minimum_chrome_version": "18",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "img\/disabled.png",
        "default_popup": "popup.html",
        "default_title": "ScriptBlock - click for more action"
    },
    "permissions": [
        "tabs"
    ],
    "version": "1.5"
}