Twitter Real Verified
Return Twitter's legacy verification and change the verification badge from users with Twitter Blue
什麼是Twitter Real Verified?
Twitter Real Verified是由@luiserdef開發的Chrome擴展程式,該擴展的主要功能是“Return Twitter's legacy verification and change the verification badge from users with Twitter Blue”。
擴展截圖
下載Twitter Real Verified擴展crx文件
下載Twitter Real Verified擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The verified icon (legacy verification) will be restored to all users who had it before the Twitter Blue changes on April 20, 2023.
Note: The data of verified accounts was taken before April 4, 2023.
Full list Provided by Travisbrown: https://gist.github.com/travisbrown/b50d6745298cccd6b1f4697e4ec22103
Also works on tweetdeck.
✅ Options
- Hide Twitter Blue badges
- Remove the verification badge from users who have Twitter Blue.
- Replace Twitter Blue badges with a clown 🤡
- Add a simple green checkmark to legacy verified accounts: Keeps the current twitter verification system and only adds a green checkmark to accounts that were previously verified.
✅ Change badge color
- Change the badge color for verified users, Twitter Blue users, and verified users who have Twitter Blue.
🤝 Do you want to contribute or have you found any bugs?
https://github.com/luiserdef/twitter-real-verified 擴展基本資訊
| 名稱 | |
| ID | jgpfnkhpecliocnopchaoogpmnejlghn |
| 官方網址 | https://chromewebstore.google.com/detail/twitter-real-verified/jgpfnkhpecliocnopchaoogpmnejlghn |
| 簡介 | Return Twitter's legacy verification and change the verification badge from users with Twitter Blue |
| 檔案大小 | 2.75 MB |
| 安裝次數 | 824 |
| 目前版本 | 2.1.7 |
| 更新時間 | 2023-11-26 |
| 上架時間 | 2023-04-07 |
| 評分 | 5.00/5 共 7 次評分 |
| 開發者 | @luiserdef |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/luiserdef/twitter-real-verified |
| 支援的語言 | en,es |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_app_title__",
"version": "2.1.7",
"description": "__MSG_app_description__",
"author": "@luiserdef",
"manifest_version": 3,
"default_locale": "en",
"permissions": [
"declarativeContent"
],
"icons": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"action": {
"default_popup": "popup\/popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"js": [
"contentScript.js"
],
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/tweetdeck.twitter.com\/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"verifiedUserList1.js",
"verifiedUserList2.js",
"script.js"
],
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/tweetdeck.twitter.com\/*"
]
}
]
} | |