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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}