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
公式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
}