Legacy Verified

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

Vad är Legacy Verified?

Legacy Verified är en Chrome-tillägg utvecklad av robert.spier, och dess huvudfunktion är "Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter".

Tilläggsskärmbilder

screenshot

Ladda ner Legacy Verified-förlängningens CRX-fil

Ladda ner Legacy Verified-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Legacy Verified Legacy Verified
ID kpaemodmgoobmechkcplpffkpfbpebnm
Officiell webbadress https://chromewebstore.google.com/detail/legacy-verified/kpaemodmgoobmechkcplpffkpfbpebnm
Beskrivning Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter
Filstorlek 5.09 MB
Antal Installationer 275
Aktuell Version 1.0.2
Senast Uppdaterad 2023-04-27
Publiceringsdatum 2023-04-27
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare robert.spier
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/roberrrt-s/legacy-verified-extension
Hjälpsida URL https://github.com/roberrrt-s/legacy-verified-extension/issues
Stödda Språk 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"
            ]
        }
    ]
}