Title with URL

Get the active web page's title and URL.

Cos'è Title with URL?

Title with URL è un'estensione di Chrome sviluppata da R4HS Inc., e la sua funzione principale è "Get the active web page's title and URL.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Title with URL

Scarica i file di estensione Title with URL 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Title with URL Title with URL
ID cgnjbelglgfnjfdlfdggdeglimegedpp
URL Ufficiale https://chromewebstore.google.com/detail/title-with-url/cgnjbelglgfnjfdlfdggdeglimegedpp
Descrizione Get the active web page's title and URL.
Dimensione del File 105 KB
Conteggio Installazioni 30
Versione Corrente 0.2
Ultimo Aggiornamento 2014-09-25
Data di Pubblicazione 2014-09-24
Valutazione 2.00/5 Totale 1 Valutazioni
Sviluppatore R4HS Inc.
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}