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
官方URL 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"
            ]
        }
    ]
}