Big Brother Blocker
This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.
什麼是Big Brother Blocker?
Big Brother Blocker是由ville.pv開發的Chrome擴展程式,該擴展的主要功能是“This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.”。
擴展截圖
下載Big Brother Blocker擴展crx文件
下載Big Brother Blocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The extension will look for BB or Big Brother related content from mtv.fi, iltasanomat.fi, iltalehti.fi and hs.fi news websites and remove them. See screenshots.
擴展基本資訊
名稱 | |
ID | gjoppkgfoenmfemaobkefghgnfejoood |
官方網址 | https://chrome.google.com/webstore/detail/big-brother-blocker/gjoppkgfoenmfemaobkefghgnfejoood |
簡介 | This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites. |
檔案大小 | 76.59 KB |
安裝次數 | 40 |
目前版本 | 0.0.1 |
更新時間 | 2014-09-02 |
上架時間 | 2014-09-02 |
評分 | 5.00/5 共 1 次評分 |
開發者 | ville.pv |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Big Brother Blocker", "description": "This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.", "version": "0.0.1", "background": { "scripts": [ "background.js" ] }, "permissions": [ "http:\/\/*\/*" ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/*" ] }, "content_scripts": [ { "matches": [ "http:\/\/iltasanomat.fi\/*", "http:\/\/www.iltasanomat.fi\/*" ], "js": [ "jquery-2.1.1.min.js", "iltasanomat.js" ] }, { "matches": [ "http:\/\/www.mtv.fi\/*", "http:\/\/mtv.fi\/*" ], "js": [ "jquery-2.1.1.min.js", "mtv.js" ] }, { "matches": [ "http:\/\/iltalehti.fi\/*", "http:\/\/www.iltalehti.fi\/*" ], "js": [ "jquery-2.1.1.min.js", "iltalehti.js" ] }, { "matches": [ "http:\/\/hs.fi\/*", "http:\/\/www.hs.fi\/*" ], "js": [ "jquery-2.1.1.min.js", "hs.js" ] } ], "icons": { "16": "16.png", "48": "48.png", "128": "128.png" } } |