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.”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | ahnfpebnkocjfnljkeibilgochlohpge |
官方網址 | 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'" } |