Bieber Blocker

Tired of seeing Bieber's name everywhere without an insult before it? Tire no longer.

Bieber Blockerとは何ですか?

Bieber Blockerはkaagleasonによって開発されたChromeの拡張機能で、その主な機能は「Tired of seeing Bieber's name everywhere without an insult before it? Tire no longer.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Bieber Blocker拡張機能のCRXファイルをダウンロード

Bieber Blocker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        There are certain celebrities that cause you to cringe when you hear or see their name. Some people just deserve to be insulted. Finally, a chrome extension that will monitor the web for you and insert some insulting adjective before all those celebrities' names.

NEW IN RELEASE 1.5:
- Improved UI
- Added insults

Note, in some rare cases, Bieber Blocker can mess with the javascript on a page. If you notice anything acting up simply disable Bieber Blocking and please let me know.                    

拡張機能の基本情報

名前 Bieber Blocker Bieber Blocker
ID ilommfifmlndhimdoehjkhnfaodpepop
公式URL https://chrome.google.com/webstore/detail/bieber-blocker/ilommfifmlndhimdoehjkhnfaodpepop
説明 Tired of seeing Bieber's name everywhere without an insult before it? Tire no longer.
ファイルサイズ 35.14 KB
インストール数 68
現在のバージョン 1.5
最終更新日 2016-01-23
公開日 2016-01-23
評価 3.71/5 合計 7 レビュー
開発者 kaagleason
支払い方法 in_app
拡張機能のウェブサイト http://kevingleason.me/
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bieber Blocker",
    "short_name": "bBlocker",
    "description": "Tired of seeing Bieber's name everywhere without an insult before it? Tire no longer.",
    "version": "1.5",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "Bieber Blocker",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "findReplace.js",
                "bblockr.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}