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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
URL страницы помощи https://github.com/stilliard/Twitter-detector
URL страницы политики конфиденциальности 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"
            ]
        }
    ]
}