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文件

下載Eight Dollars擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}