Bird Spotter - Detect Twitter users
Easily discover Twitter users on pages
What is Bird Spotter - Detect Twitter users?
Bird Spotter - Detect Twitter users is a Chrome extension developed by https://fvdm.com, and its main feature is "Easily discover Twitter users on pages".
Extension Screenshots
Download Bird Spotter - Detect Twitter users Extension CRX File
Download Bird Spotter - Detect Twitter users extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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)
Extension Basic Information
Name | |
ID | ggnolfdnhcpnjipfjbicfjifmodbckok |
Official URL | https://chrome.google.com/webstore/detail/bird-spotter-detect-twitt/ggnolfdnhcpnjipfjbicfjifmodbckok |
Description | Easily discover Twitter users on pages |
File Size | 31.19 KB |
Installation Count | 122 |
Current Version | 3.0.0 |
Last Updated | 2021-04-10 |
Publish Date | 2016-04-27 |
Rating | 4.00/5 Total 3 Ratings |
Developer | https://fvdm.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/fvdm/chrome-birdspotter |
Help Page URL | https://github.com/fvdm/chrome-birdspotter/issues |
Supported Languages | 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" ] } |