Twitter Blue Blocker
An extension that (tries to) block twitter blue users as they load onto your TL
什麼是Twitter Blue Blocker?
Twitter Blue Blocker是由rlyshw開發的Chrome擴展程式,該擴展的主要功能是“An extension that (tries to) block twitter blue users as they load onto your TL”。
擴展截圖
下載Twitter Blue Blocker擴展crx文件
下載Twitter Blue Blocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Attempts to block blue checks for you as you scroll. They'll still appear on the TL the first time since this doesn't update the UI, but they'll be added to your block list. if you'd like to send me $8 instead venmo/paypal: rlyshw
擴展基本資訊
名稱 | Twitter Blue Blocker |
ID | oenpfikjdpcjchnooafpppoaaailendg |
官方網址 | https://chromewebstore.google.com/detail/twitter-blue-blocker/oenpfikjdpcjchnooafpppoaaailendg |
簡介 | An extension that (tries to) block twitter blue users as they load onto your TL |
檔案大小 | 26.25 KB |
安裝次數 | 40 |
目前版本 | 1.0 |
更新時間 | 2023-04-25 |
上架時間 | 2023-04-25 |
開發者 | rlyshw |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/rlyshw/blue-check-blocker |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Blue Blocker", "description": "An extension that (tries to) block twitter blue users as they load onto your TL", "version": "1.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "world": "MAIN", "matches": [ "https:\/\/*.twitter.com\/*" ], "runAt": "document_start", "js": [ "content-script.js" ] } ], "permissions": [ "activeTab", "scripting" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/blue_block16.png", "32": "\/images\/blue_block32.png", "48": "\/images\/blue_block48.png", "128": "\/images\/blue_block128.png" } }, "icons": { "16": "\/images\/blue_block16.png", "32": "\/images\/blue_block32.png", "48": "\/images\/blue_block48.png", "128": "\/images\/blue_block128.png" }, "options_page": "options.html" } |