BluesBlocker
Chrome extension to auto-block Twitter Blue subscribers on Twitter
BluesBlockerคืออะไร?
BluesBlocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Austin Williamson และคุณลักษณะหลักของมันคือ "Chrome extension to auto-block Twitter Blue subscribers on Twitter"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BluesBlocker
ดาวน์โหลดไฟล์ส่วนขยาย BluesBlocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
⚠️This is extension has been retired by its developer and will not be receiving further updates. The developer of this extension recommends Blue Blocker, available on the Chrome Web Store at the following address: https://chromewebstore.google.com/detail/blue-blocker/jgpjphkbfjhlbajmmcoknjjppoamhpmm As of 23 February 2024, this extension has been marked unlisted by developer request. Thank you for your interest! --- Blues Blocker version 1.0.13 ("Slow Your Roll" update). Enjoy your favorite bird-flavoured microblog site, now with ottomated Blue blocking. Automatically mute, or automatically block Twitter Blue subscribers. Has options to 'avoid blocking people your account follows'. Features: • Sophisticated Action Queue: schedules actions to occur over a period of milliseconds, seconds, or minutes, to stay within twitter action API rate limits. • Allowlist / Don't Action List: did someone you like end up in your action queue? handily undo it, and prevent further actions by clicking Undo just the once. • Chrome Local Storage: Blues Blocker remembers which actions to take, even when the page is closed. • Block Large Accounts filter: block large accounts subscribed to Blue, or don't - your choice • Double-taps: Blocked users are also muted. Less mess, more content! • Action Delay Timer: set time multiplier between mute/block actions, in seconds. source-code available at: https://github.com/tinoesroho/bluesblocker/ Changelog: 1.0.13 ("slow your roll") • added Block Large Accounts filter (no longer blocks large accounts by default) • added Action Delay Timer option (set time seconds multiplier between actions) 1.0.12 ("doubletap") • added whitelist export • added whitelist import • added reset button • migrate from chrome.storage.sync to chrome.storage.local • big thank you to y'all for sticking out the previous week 1.0.10 • increased toast notification display time to 50 seconds. • replaced bearer
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | dbcfmkldigmecjpjeojbcfbjidmcngfe |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/bluesblocker/dbcfmkldigmecjpjeojbcfbjidmcngfe |
คำอธิบาย | Chrome extension to auto-block Twitter Blue subscribers on Twitter |
ขนาดไฟล์ | 150 KB |
จำนวนการติดตั้ง | 5,211 |
เวอร์ชันปัจจุบัน | 1.0.13 |
อัปเดตครั้งล่าสุด | 2024-02-24 |
วันที่เผยแพร่ | 2022-11-12 |
คะแนน | 3.74/5 รวมทั้งหมด 84 คะแนน |
ผู้พัฒนา | Austin Williamson |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://blocktheblue.club |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "BluesBlocker", "version": "1.0.13", "description": "Chrome extension to auto-block Twitter Blue subscribers on Twitter", "background": { "service_worker": "background.js", "type": "module" }, "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "permissions": [ "storage", "alarms", "cookies" ], "host_permissions": [ "*:\/\/*.twitter.com\/*" ], "content_scripts": [ { "js": [ "content\/import-index.js" ], "matches": [ "*:\/\/*.twitter.com\/*" ] } ], "options_page": "pages\/popup\/index.html", "action": { "default_popup": "pages\/popup\/index.html" }, "web_accessible_resources": [ { "resources": [ "content\/closeInfoPopup.js", "content\/index.js", "common\/util.js", "common\/settings.types.js", "background.js", "content\/autoBlock.js" ], "matches": [ "*:\/\/*.twitter.com\/*" ] }, { "resources": [ "chunks\\*-*.js", "content\\index.js" ], "matches": [ "*:\/\/*.twitter.com\/*" ] } ] } |