Blind Twitter

Keeps tweet authors hidden until you like or retweet them.

Blind Twitter क्या है?

Blind Twitter Avneesh Kohli द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Keeps tweet authors hidden until you like or retweet them."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Blind Twitter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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