Likers Blocker
Block likers, retweeters, list members and Twitter ads.
Likers Blocker란 무엇입니까?
Likers Blocker은(는) likers.blocker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block likers, retweeters, list members and Twitter ads."입니다.
확장 프로그램 스크린샷
Likers Blocker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
------------------------------------------------------------------------------------------------------------ Release Notes: https://github.com/dmstern/likers-blocker/releases ------------------------------------------------------------------------------------------------------------ Usage Manual: https://dmstern.github.io/likers-blocker/#usage Block likers ------------------ * Once you click on a tweet, there is a link which indicates how many people liked this tweet. * Click on that link to get the list of all likers * Then click on the new button on the top which says "Block all". * After collecting the likers confirm that you want them blocked * The accounts will be added to a queue and the extension will slowly block all of them in the background while your browser is open. * You can watch the progress in the extension. * ✔ DONE. All the collected likers of the tweet are blocked. 😇 Block List Members -------------------------------- * Click on the details of a list * Click on "members" * Then proceed with the third point above ("Block All"). Devleoped by ---------------------- Daniel Morgenstern (front-end) & Philip Kreißel (back-end) Follow us: ---------------- 🐦 https://twitter.com/LikersBlocker Donate -------------- paypal.me/dmstr paypal.me/philipkreissel patreon.com/danielmorgenstern
확장 프로그램 기본 정보
이름 | Likers Blocker |
ID | melnbpmfhaejmcpfflfjmchondkpmkcj |
공식 URL | https://chromewebstore.google.com/detail/likers-blocker/melnbpmfhaejmcpfflfjmchondkpmkcj |
설명 | Block likers, retweeters, list members and Twitter ads. |
파일 크기 | 4.32 MB |
설치 횟수 | 7,129 |
현재 버전 | 4.0.3 |
최근 업데이트 | 2023-03-27 |
출시 날짜 | 2020-05-02 |
평점 | 3.17/5 총 65 개의 평점 |
개발자 | likers.blocker |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://dmstern.github.io/likers-blocker/ |
도움말 페이지 URL | https://github.com/dmstern/likers-blocker/issues |
지원되는 언어 | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extensionName__", "version": "4.0.3", "description": "__MSG_extensionDescription__", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "browser-polyfill.js", "index.js" ], "css": [ "style.css" ] } ], "options_ui": { "page": "options.html" }, "permissions": [ "storage", "webRequest", "alarms", "cookies", "downloads", "tabs", "notifications" ], "host_permissions": [ "https:\/\/*.twitter.com\/*" ], "manifest_version": 3, "background": { "service_worker": "background.js", "type": "module" }, "browser_specific_settings": { "gecko": { "id": "{89935eae-8bfa-4d3b-ad16-0881dff87d50}" } }, "action": { "default_popup": "popup.html" }, "content_security_policy": { "extension_pages": "default-src 'self' https:\/\/api.twitter.com; script-src 'self'; object-src 'self'; connect-src 'self' https:\/\/api.twitter.com https:\/\/twitter.com\/; img-src 'self' https:\/\/pbs.twimg.com https:\/\/abs.twimg.com;" }, "default_locale": "en" } |