Title with URL

Get the active web page's title and URL.

Co to jest Title with URL?

Title with URL to rozszerzenie Chrome opracowane przez R4HS Inc., a jego główną funkcją jest „Get the active web page's title and URL.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Title with URL

Pobierz pliki rozszerzeń Title with URL 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

                        You can easily get the active web page's title and URL by this app.

Updates:
v0.1
 - First beta version.
v0.2
 - Click to copy a title of the active tab page and its URL as from plain text to text/html into clip board.                    

Podstawowe informacje o rozszerzeniu

Nazwa Title with URL Title with URL
ID cgnjbelglgfnjfdlfdggdeglimegedpp
Oficjalny URL https://chromewebstore.google.com/detail/title-with-url/cgnjbelglgfnjfdlfdggdeglimegedpp
Opis Get the active web page's title and URL.
Rozmiar pliku 105 KB
Liczba instalacji 30
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2014-09-25
Data Publikacji 2014-09-24
Ocena 2.00/5 Łącznie 1 Oceny
Deweloper R4HS Inc.
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Title with URL",
    "description": "Get the active web page's title and URL. ",
    "version": "0.2",
    "manifest_version": 2,
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "name": "Retrieve",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "twu-icon-19.png",
            "38": "twu-icon-38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.com\/"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "twu-icon-16.png",
        "128": "twu-icon-128.png"
    },
    "permissions": [
        "clipboardWrite",
        "tabs",
        "activeTab"
    ]
}