Blind Twitter

Keeps tweet authors hidden until you like or retweet them.

Blind Twitterとは何ですか?

Blind TwitterはAvneesh Kohliによって開発されたChromeの拡張機能で、その主な機能は「Keeps tweet authors hidden until you like or retweet them.」です。

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

screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        Twitter is an incredible platform, but it is also one where the diffusion of ideas is biased towards those with influence. 

Blind Twitter aims to solve this problem. By keeping tweet authors and Like/Retweet counts hidden, you get to decide free of outside signal the quality of a tweet. Once you engage with a tweet by liking, retweeting, replying to it, we'll reveal who wrote it and where it's from.

We think this will genuinely change how you interact with your Twitter feed.                    

拡張機能の基本情報

名前 Blind Twitter Blind Twitter
ID ahnfpebnkocjfnljkeibilgochlohpge
公式URL https://chrome.google.com/webstore/detail/ahnfpebnkocjfnljkeibilgochlohpge
説明 Keeps tweet authors hidden until you like or retweet them.
ファイルサイズ 50.97 KB
インストール数 46
現在のバージョン 1.2.3
最終更新日 2016-02-08
公開日 2016-02-08
評価 3.20/5 合計 5 レビュー
開発者 Avneesh Kohli
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blind Twitter",
    "description": "Keeps tweet authors hidden until you like or retweet them.",
    "version": "1.2.3",
    "browser_action": {
        "default_icon": "logo.png",
        "default_title": "Reveal Tweets"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "48": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/avatar.png",
        "images\/logo.png"
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "webRequest",
        "*:\/\/*.twitter.com\/*",
        "*:\/\/*.google-analytics.com\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}