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文件

下載Site Blockr擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            }
        }
    }
}