Extract Twitter Username

Extracts Twitter username if found on the page

Cos'è Extract Twitter Username?

Extract Twitter Username è un'estensione di Chrome sviluppata da jakub.chodounsky, e la sua funzione principale è "Extracts Twitter username if found on the page".

Scarica il file CRX dell'estensione Extract Twitter Username

Scarica i file di estensione Extract Twitter Username in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Extract Twitter Username Extract Twitter Username
ID ijecnijneneapbdhocmjbhnamicoonai
URL Ufficiale https://chrome.google.com/webstore/detail/extract-twitter-username/ijecnijneneapbdhocmjbhnamicoonai
Descrizione Extracts Twitter username if found on the page
Dimensione del File 39.02 KB
Conteggio Installazioni 45
Versione Corrente 0.1.2
Ultimo Aggiornamento 2016-11-10
Data di Pubblicazione 2016-11-10
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore jakub.chodounsky
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jakubgarfield/extract-twitter-username-chrome
Lingue Supportate 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
}