Twitter Blocker
Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.
Twitter Blocker란 무엇입니까?
Twitter Blocker은(는) https://obodugo.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline."입니다.
확장 프로그램 스크린샷
Twitter Blocker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Twitter Blocker helps you reduce the noise on your timeline. Ever encountered muting a tweet, hashtag or whatsoever on twitter, but still see them popping up on the TL one way or the other? Well, this removes it entirely from the page so you don't get to see it again. So What can i block using Twitter Blocker 🤔 - Tweets - Tweets by Category - Hashtags - Tweets by Location Hopefully this helps you maintain a good level of sanity on your TL :) Experience any issue whilst using the extension, quickly buzz us using the support links on the page, and we would get on it ASAP.
확장 프로그램 기본 정보
이름 | |
ID | hifjjlinjpddohocbhfifpaopdfnfadl |
공식 URL | https://chrome.google.com/webstore/detail/twitter-blocker/hifjjlinjpddohocbhfifpaopdfnfadl |
설명 | Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline. |
파일 크기 | 639 KB |
설치 횟수 | 79 |
현재 버전 | 1.0 |
최근 업데이트 | 2020-06-21 |
출시 날짜 | 2020-06-21 |
개발자 | https://obodugo.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://obodugo.com |
도움말 페이지 URL | https://twitter.com/djunehor |
개인정보 보호 정책 페이지 URL | https://shagital.com |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Blocker", "description": "Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.", "version": "1.0", "short_name": "RecordRTC", "author": "Obodugo Rapheal, Zacchaeus Bolaji", "manifest_version": 2, "minimum_chrome_version": "49", "homepage_url": "https:\/\/obodugo.com", "icons": { "16": "icon.png", "22": "icon.png", "32": "icon.png", "48": "icon.png", "128": "icon.png" }, "permissions": [ "tabs", "activeTab", "declarativeContent", "storage", "contextMenus" ], "content_scripts": [ { "js": [ "jquery.js", "script.js" ], "matches": [ "*:\/\/*.twitter.com\/*" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "icon.png", "default_title": "Twitter Blocker", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false } } |