Eight Dollars

Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.

Eight Dollars란 무엇입니까?

Eight Dollars은(는) Walter Lim에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users."입니다.

확장 프로그램 스크린샷

screenshot

Eight Dollars 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Eight Dollars helps Twitter users differentiate between users that paid for verification and users that were given Twitter Verification.

Got an idea for a feature or issues using the extension? Visit https://github.com/wseagar/eight-dollars/issues                    

확장 프로그램 기본 정보

이름 Eight Dollars Eight Dollars
ID fjbponfbognnefnmbffcfllkibbbobki
공식 URL https://chromewebstore.google.com/detail/eight-dollars/fjbponfbognnefnmbffcfllkibbbobki
설명 Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.
파일 크기 3.25 MB
설치 횟수 10,000
현재 버전 2.0
최근 업데이트 2023-05-01
출시 날짜 2022-11-12
평점 4.48/5 총 83 개의 평점
개발자 Walter Lim
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/wseagar/eight-dollars
도움말 페이지 URL https://github.com/wseagar/eight-dollars
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Eight Dollars",
    "version": "2.0",
    "description": "Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.",
    "icons": {
        "16": ".\/assets\/16.png",
        "32": ".\/assets\/32.png",
        "48": ".\/assets\/48.png",
        "256": ".\/assets\/256.png",
        "512": ".\/assets\/512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "script.js",
                "search.js",
                "data\/verified.txt"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": ".\/assets\/16.png",
            "32": ".\/assets\/32.png"
        },
        "default_title": "Eight Dollars - Options",
        "default_popup": "options\/options.html"
    },
    "permissions": [
        "storage"
    ]
}