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 |
| Eメール | [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"
]
} | |