Site Blockr

This extension hides links to, and all content from, the sites you want (alpha)

Site Blockr란 무엇입니까?

Site Blockr은(는) ahallicks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension hides links to, and all content from, the sites you want (alpha)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Site Blockr is an extension used to hide links to, and actual sites from your every day browsing. If you have a site that you don't like, or never want to visit again, just add it to the list of blockd sites in the extension options and you'll never have to see it, or references to it, again.

You can also disable all social media sites with one simple button in the extension options!

Please note: this extension is in alpha so you may find bugs. If so, please report them to me via feedback or on the support site.                    

확장 프로그램 기본 정보

이름 Site Blockr Site Blockr
ID cmldlmfklkdofkaejanfndeepkhlalnf
공식 URL https://chromewebstore.google.com/detail/site-blockr/cmldlmfklkdofkaejanfndeepkhlalnf
설명 This extension hides links to, and all content from, the sites you want (alpha)
파일 크기 97.08 KB
설치 횟수 35
현재 버전 1.0.1
최근 업데이트 2014-03-19
출시 날짜 2014-03-19
평점 5.00/5 총 1 개의 평점
개발자 ahallicks
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://bitbucket.org/ahallicks/site-blockr
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Site Blockr",
    "description": "This extension hides links to, and all content from, the sites you want (alpha)",
    "version": "1.0.1",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications"
    ],
    "browser_action": {
        "default_icon": {
            "19": "img\/icon-on.png",
            "38": "img\/icon-38-on.png"
        },
        "default_title": "Site Blockr is running"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "js\/SiteBlockr.js"
            ],
            "css": [
                "css\/SiteBlockr.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "img\/icon.png",
        "32": "img\/icon-38.png",
        "48": "img\/icon-64.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "img\/icon-64.png"
    ],
    "options_page": "options.html",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+H"
            }
        }
    }
}