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 |
公式URL | 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" } } |