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'"
}