Extract Twitter Username

Extracts Twitter username if found on the page

什麼是Extract Twitter Username?

Extract Twitter Username是由jakub.chodounsky開發的Chrome擴展程式,該擴展的主要功能是“Extracts Twitter username if found on the page”。

下載Extract Twitter Username擴展crx文件

下載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
官方網址 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
}