Bird Spotter - Detect Twitter users
Easily discover Twitter users on pages
什么是Bird Spotter - Detect Twitter users?
Bird Spotter - Detect Twitter users是由https://fvdm.com开发的Chrome扩展程序,该扩展的主要功能是“Easily discover Twitter users on pages”。
扩展截图
下载Bird Spotter - Detect Twitter users扩展crx文件
下载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)
扩展基本信息
名称 | |
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" ] } |