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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Legacy Verified एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}