Extract Twitter Username

Extracts Twitter username if found on the page

Co to jest Extract Twitter Username?

Extract Twitter Username to rozszerzenie Chrome opracowane przez jakub.chodounsky, a jego główną funkcją jest „Extracts Twitter username if found on the page”.

Pobierz plik CRX rozszerzenia Extract Twitter Username

Pobierz pliki rozszerzeń Extract Twitter Username w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Extract Twitter Username Extract Twitter Username
ID ijecnijneneapbdhocmjbhnamicoonai
Oficjalny URL https://chrome.google.com/webstore/detail/extract-twitter-username/ijecnijneneapbdhocmjbhnamicoonai
Opis Extracts Twitter username if found on the page
Rozmiar pliku 39.02 KB
Liczba instalacji 45
Aktualna Wersja 0.1.2
Ostatnia Aktualizacja 2016-11-10
Data Publikacji 2016-11-10
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper jakub.chodounsky
Typ Płatności free
Strona Rozszerzenia https://github.com/jakubgarfield/extract-twitter-username-chrome
Obsługiwane Języki 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
}