Extract Twitter Username

Extracts Twitter username if found on the page

Extract Twitter Usernameคืออะไร?

Extract Twitter Username เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jakub.chodounsky และคุณลักษณะหลักของมันคือ "Extracts Twitter username if found on the page"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Extract Twitter Username

ดาวน์โหลดไฟล์ส่วนขยาย Extract Twitter Username ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Extracts Twitter usernames from a webpage and copies the first one to the clipboard.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Extract Twitter Username Extract Twitter Username
ID ijecnijneneapbdhocmjbhnamicoonai
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/extract-twitter-username/ijecnijneneapbdhocmjbhnamicoonai
คำอธิบาย Extracts Twitter username if found on the page
ขนาดไฟล์ 39.02 KB
จำนวนการติดตั้ง 45
เวอร์ชันปัจจุบัน 0.1.2
อัปเดตครั้งล่าสุด 2016-11-10
วันที่เผยแพร่ 2016-11-10
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา jakub.chodounsky
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jakubgarfield/extract-twitter-username-chrome
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Extract Twitter Username",
    "description": "Extracts Twitter username if found on the page",
    "version": "0.1.2",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "Extract Twitter username",
        "default_icon": "icon-16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "content.js"
            ]
        }
    ],
    "manifest_version": 2
}