Twitter account detector

This extension offers a quick way to show all twitter accounts from the page its on.

ما هو Twitter account detector؟

Twitter account detector هو إضافة Chrome تم تطويرها بواسطة https://stapps.io، والميزة الرئيسية لها هي "This extension offers a quick way to show all twitter accounts from the page its on.".

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

screenshot

تحميل ملف CRX للإضافة Twitter account detector

قم بتنزيل ملفات الامتداد Twitter account detector بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension helps you find Twitter/X accounts for the page its on so you can contact or follow them easily. 
Unofficial extension.

Feel free to contribute with code or ideas:
https://github.com/stilliard/Twitter-detector                    

معلومات أساسية عن التمديد

الاسم Twitter account detector Twitter account detector
ID papcdbgfejihdinhieggiamjnkclhkck
عنوان URL الرسمي https://chromewebstore.google.com/detail/twitter-account-detector/papcdbgfejihdinhieggiamjnkclhkck
الوصف This extension offers a quick way to show all twitter accounts from the page its on.
حجم الملف 988 KB
عدد التثبيتات 1,247
النسخة الحالية 3.0
آخر تحديث 2023-12-05
تاريخ النشر 2020-03-17
تقييم 4.64/5 مجموع تقييمات 14
المطور https://stapps.io
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/stilliard/Twitter-detector
عنوان صفحة المساعدة https://github.com/stilliard/Twitter-detector
عنوان صفحة سياسة الخصوصية https://twitter.com/en/privacy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitter account detector",
    "description": "This extension offers a quick way to show all twitter accounts from the page its on.",
    "version": "3.0",
    "action": {
        "browser_style": true,
        "default_icon": {
            "16": "images\/icon-16x16.png",
            "48": "images\/icon-48x48.png",
            "128": "images\/icon-128x128.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ]
}