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文件
下载Likers Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
------------------------------------------------------------------------------------------------------------
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 扩展基本信息
| 名称 | |
| 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"
} | |