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"
    ]
}