TweetBlock
Block specific tweets from appearing on your timeline without blocking the user creating them.
TweetBlock란 무엇입니까?
TweetBlock은(는) https://blackle-mori.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block specific tweets from appearing on your timeline without blocking the user creating them."입니다.
확장 프로그램 스크린샷
TweetBlock 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
TweetBlock is a chrome extension to block specific tweets from appearing on your timeline, without blocking the user creating them. There are a few reasons why this little feature would be useful: - There is a very popular tweet everyone in your feed is retweeting that you just don't want to see. - There's an untagged tweet that makes you very uncomfortable. - Your very good friend is in a odd meme mood and is posting pictures of lewd minions every 30 seconds and you're at work. Once installed TweetBlock will add a small "X" button on each tweet which will allow you to block it. Blocked tweets appear in a collapsed state that can be expanded with the "toggle visibility" button. Tweets can be unblocked by re-clicking the "X" or visiting the options page, where a list of all blocked tweets can be viewed. This extension is currently in very-beta release. If you find a bug please report it to the github repo (set as the webpage for this extension.) Happy blocking!
확장 프로그램 기본 정보
이름 | TweetBlock |
ID | emgeioodbdkocgffmnfdhjldnefeikeb |
공식 URL | https://chromewebstore.google.com/detail/tweetblock/emgeioodbdkocgffmnfdhjldnefeikeb |
설명 | Block specific tweets from appearing on your timeline without blocking the user creating them. |
파일 크기 | 769 KB |
설치 횟수 | 38 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2016-06-10 |
출시 날짜 | 2016-06-09 |
평점 | 4.33/5 총 3 개의 평점 |
개발자 | https://blackle-mori.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/blackle/TweetBlock |
도움말 페이지 URL | https://github.com/blackle/TweetBlock/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TweetBlock", "description": "Block specific tweets from appearing on your timeline without blocking the user creating them.", "version": "1.0.0", "options_page": "options\/options.html", "browser_action": { "default_icon": "img\/icon.png", "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.twitter.com\/*", "*:\/\/twitter.com\/*" ], "css": [ "sitecontent\/twitter.css" ], "js": [ "commonjs\/blocked_tweet_db.js", "sitecontent\/twitter.js" ], "run_at": "document_start" } ], "permissions": [ "storage", "https:\/\/platform.twitter.com\/*" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_security_policy": "script-src 'self' https:\/\/platform.twitter.com\/ https:\/\/syndication.twitter.com\/; object-src 'self'" } |