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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
| 공식 URL | 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
} | |