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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.
확장 프로그램 기본 정보
이름 | |
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'" } |