Comcast Boycotter
Warns users they are accessing websites owned by Comcast.
什麼是Comcast Boycotter?
Comcast Boycotter是由http://coperiansoftworks.com開發的Chrome擴展程式,該擴展的主要功能是“Warns users they are accessing websites owned by Comcast.”。
擴展截圖
下載Comcast Boycotter擴展crx文件
下載Comcast Boycotter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
In order to ensure Net Neutrality, this tool warns users before accessing sites owned or operated by Comcast, giving them the opportunity to boycott. This extension is completely open-sourced and you are encouraged to redistribute it in any way you like. However, the extension owner makes no guarantees concerning the code or anyone who may chose to redistribute. This extension is comprised of two files: Manifest.json: ////////////////////////////////////////////////////////////////////////////// { "name": "Comcast Boycotter", "version": "1.0", "description": "Warns users they are accessing websites owned by Comcast.", "background":{ "persistent": true, "scripts": ["interrupt.js"] }, "permissions":[ "webRequest", "webRequestBlocking", "storage","*://*/" ], "manifest_version": 2 } ////////////////////////////////////////////////////////////////////////////// Interrupt.js: ////////////////////////////////////////////////////////////////////////////// (function(){ onBeforeReqHandler = function(details){ var message = "The url " + details.url.split('?')[0] + " is owned by Comcast." message += "\rAre you sure you want to navigate to this page?" return {cancel: !confirm(message)} }; onBeforeReqPartialHandler = function (details) { var message = "The url " + details.url.split('?')[0] + " is partially owned by Comcast." message += "\rAre you sure you want to navigate to this page?" return { cancel: !confirm(message) } }; chrome.webRequest.onBeforeRequest.addListener( onBeforeReqHandler.bind(this), { urls: [ "*://*.telemundo.com/*", "*://*.universalstudios.com/*", "*://*.esquire.com/*", "*://*.bravotv.com/*", "*://*.chillertv.com/*", "*://*.cnbc.com/*", "*://*.comcast.com/*", "*://*.comcastsportsnet.com/*", "*://*.eonline.com/*", "*://*.focusfeatures.com/*", "*://*.ivillage.com/*", "*://*.msnbc.com/*", "*://*.nbc.com/*", "*://*.nbcnews.com/*", "*://*.nbcsports.com/*", "*://*.nbcuni.com/*", "*://*.pictureboxfilms.com/*", "*://*.syfy.com/*", "*://*.telemundopr.com/*", "*://*.universalstudios.com/*", "*://*.usanetwork.com/*", "*://*.weather.com/*", "*://*.comcast.net/*", "*://*.illuminationentertainment.com/*" ], types: ["main_frame"] }, ["blocking"] ); chrome.webRequest.onBeforeRequest.addListener( onBeforeReqPartialHandler.bind(this), { urls: [ "*://*.hulu.com/*"], types: ["main_frame"] }, ["blocking"] ); }).call(this); //////////////////////////////////////////////////////////////////////////////
擴展基本資訊
名稱 | ![]() |
ID | kjpnbbmhefamkdgjhmeamfnbihamndgd |
官方網址 | https://chrome.google.com/webstore/detail/comcast-boycotter/kjpnbbmhefamkdgjhmeamfnbihamndgd |
簡介 | Warns users they are accessing websites owned by Comcast. |
檔案大小 | 3.58 KB |
安裝次數 | 32 |
目前版本 | 1.0 |
更新時間 | 2014-05-21 |
上架時間 | 2014-05-21 |
評分 | 4.00/5 共 3 次評分 |
開發者 | http://coperiansoftworks.com |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Comcast Boycotter", "version": "1.0", "description": "Warns users they are accessing websites owned by Comcast.", "background": { "persistent": true, "scripts": [ "interrupt.js" ] }, "permissions": [ "webRequest", "webRequestBlocking", "storage", "*:\/\/*\/" ], "manifest_version": 2 } |