Blind Twitter

Keeps tweet authors hidden until you like or retweet them.

Wat is Blind Twitter?

Blind Twitter is een Chrome-extensie ontwikkeld door Avneesh Kohli, en de belangrijkste functie is "Keeps tweet authors hidden until you like or retweet them.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Blind Twitter

Download Blind Twitter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Blind Twitter Blind Twitter
ID ahnfpebnkocjfnljkeibilgochlohpge
Officiële URL https://chrome.google.com/webstore/detail/ahnfpebnkocjfnljkeibilgochlohpge
Beschrijving Keeps tweet authors hidden until you like or retweet them.
Bestandsgrootte 50.97 KB
Aantal Installaties 46
Huidige Versie 1.2.3
Laatst Bijgewerkt 2016-02-08
Publicatiedatum 2016-02-08
Beoordeling 3.20/5 Totaal 5 Beoordelingen
Ontwikkelaar Avneesh Kohli
Betalingswijze free
Ondersteunde Talen 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'"
}