Extract Twitter Username

Extracts Twitter username if found on the page

What is Extract Twitter Username?

Extract Twitter Username is a Chrome extension developed by jakub.chodounsky, and its main feature is "Extracts Twitter username if found on the page".

Download Extract Twitter Username Extension CRX File

Download Extract Twitter Username extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Extract Twitter Username Extract Twitter Username
ID ijecnijneneapbdhocmjbhnamicoonai
Official URL https://chrome.google.com/webstore/detail/extract-twitter-username/ijecnijneneapbdhocmjbhnamicoonai
Description Extracts Twitter username if found on the page
File Size 39.02 KB
Installation Count 45
Current Version 0.1.2
Last Updated 2016-11-10
Publish Date 2016-11-10
Rating 5.00/5 Total 1 Ratings
Developer jakub.chodounsky
Payment Type free
Extension Website https://github.com/jakubgarfield/extract-twitter-username-chrome
Supported Languages 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
}