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 |
官方網址 | 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" ] } |