Bird Spotter - Detect Twitter users

Easily discover Twitter users on pages

Что такое Bird Spotter - Detect Twitter users?

Bird Spotter - Detect Twitter users - это расширение Chrome, разработанное https://fvdm.com, и его основная функция - "Easily discover Twitter users on pages".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Bird Spotter - Detect Twitter users

Скачайте файлы расширений Bird Spotter - Detect Twitter users в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Let Chrome find Twitter users on any website.

No more searching through webpages to find that @followme link. When Bird Spotter finds any Twitter users it will notify you with the little bird. Just click the bird to see them all.

FEATURES

+ Detect usernames from links and widgets
+ Open Twitter user in tab, popup or custom url (web or apps)                    

Основная информация о расширении

Название Bird Spotter - Detect Twitter users Bird Spotter - Detect Twitter users
ID ggnolfdnhcpnjipfjbicfjifmodbckok
Официальный URL https://chrome.google.com/webstore/detail/bird-spotter-detect-twitt/ggnolfdnhcpnjipfjbicfjifmodbckok
Описание Easily discover Twitter users on pages
Размер файла 31.19 KB
Количество установок 122
Текущая Версия 3.0.0
Последнее Обновление 2021-04-10
Дата публикации 2016-04-27
Рейтинг 4.00/5 Всего 3 оценок
Разработчик https://fvdm.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/fvdm/chrome-birdspotter
URL страницы помощи https://github.com/fvdm/chrome-birdspotter/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bird Spotter - Detect Twitter users",
    "version": "3.0.0",
    "manifest_version": 2,
    "description": "Easily discover Twitter users on pages",
    "icons": {
        "16": "icons\/Chrome_Bird_Spotter_icon_16.png",
        "48": "icons\/Chrome_Bird_Spotter_icon_48.png",
        "128": "icons\/Chrome_Bird_Spotter_icon_128.png"
    },
    "offline_enabled": true,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "bird_spotter.js"
            ]
        }
    ],
    "options_page": "options.html",
    "page_action": {
        "default_icon": "icons\/twitter-bird-light-bgs.png",
        "default_title": "Bird Spotter",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}