Legacy Verified

Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter

什麼是Legacy Verified?

Legacy Verified是由robert.spier開發的Chrome擴展程式,該擴展的主要功能是“Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter”。

擴展截圖

screenshot

下載Legacy Verified擴展crx文件

下載Legacy Verified擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The Legacy Verified Extension enables people to add a verified logo next to names of accounts on Twitter that were previously verified. Uses data provided by Travis Brown and initiated by Oliver Alexander. It is being developed by Robert Spier                    

擴展基本資訊

名稱 Legacy Verified Legacy Verified
ID kpaemodmgoobmechkcplpffkpfbpebnm
官方網址 https://chromewebstore.google.com/detail/legacy-verified/kpaemodmgoobmechkcplpffkpfbpebnm
簡介 Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter
檔案大小 5.09 MB
安裝次數 275
目前版本 1.0.2
更新時間 2023-04-27
上架時間 2023-04-27
評分 5.00/5 共 3 次評分
開發者 robert.spier
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/roberrrt-s/legacy-verified-extension
說明頁面URL https://github.com/roberrrt-s/legacy-verified-extension/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Legacy Verified",
    "version": "1.0.2",
    "description": "Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "action": {
        "default_title": "Legacy Verified Extension",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/icons\/*.png",
                "legacy-verified.csv"
            ],
            "matches": [
                "*:\/\/twitter.com\/*",
                "*:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ]
        }
    ]
}