Eight Dollars

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

ما هو Eight Dollars؟

Eight Dollars هو إضافة Chrome تم تطويرها بواسطة Walter Lim، والميزة الرئيسية لها هي "Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Eight Dollars

قم بتنزيل ملفات الامتداد Eight Dollars بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    ]
}