Legacy Verified

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

What is Legacy Verified?

Legacy Verified is a Chrome extension developed by robert.spier, and its main feature is "Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter".

Extension Screenshots

screenshot

Download Legacy Verified Extension CRX File

Download Legacy Verified extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Legacy Verified Legacy Verified
ID kpaemodmgoobmechkcplpffkpfbpebnm
Official URL https://chromewebstore.google.com/detail/legacy-verified/kpaemodmgoobmechkcplpffkpfbpebnm
Description Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter
File Size 5.09 MB
Installation Count 275
Current Version 1.0.2
Last Updated 2023-04-27
Publish Date 2023-04-27
Rating 5.00/5 Total 3 Ratings
Developer robert.spier
Email [email protected]
Payment Type free
Extension Website https://github.com/roberrrt-s/legacy-verified-extension
Help Page URL https://github.com/roberrrt-s/legacy-verified-extension/issues
Supported Languages 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"
            ]
        }
    ]
}