Add URL to page title
Simply adds the URL to the title bar.
Cos'è Add URL to page title?
Add URL to page title è un'estensione di Chrome sviluppata da Simon Perry, e la sua funzione principale è "Simply adds the URL to the title bar.".
Scarica il file CRX dell'estensione Add URL to page title
Scarica i file di estensione Add URL to page title 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
This put the URL of any web page you're on into the page title in the format: Original Title |url:[http://www.the-url.com] But why? In Chrome, other applications used to be able to use Chrome_OmniboxView to get the URL of the page you are on. Since version 28, you can no longer do this. However, you can still get the title of the window. This simple Chrome extension puts the URL into the title to make it available to other applications.
Informazioni di Base sull'Estensione
Nome | Add URL to page title |
ID | ghpeimfjbonkimelnkbgekmcboomkgmi |
URL Ufficiale | https://chromewebstore.google.com/detail/add-url-to-page-title/ghpeimfjbonkimelnkbgekmcboomkgmi |
Descrizione | Simply adds the URL to the title bar. |
Dimensione del File | 2.79 KB |
Conteggio Installazioni | 733 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2013-09-17 |
Data di Pubblicazione | 2013-09-17 |
Valutazione | 4.29/5 Totale 7 Valutazioni |
Sviluppatore | Simon Perry |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Add URL to page title", "version": "1.0", "manifest_version": 2, "description": "Simply adds the URL to the title bar.", "permissions": [ "tabs", "http:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "inject.js" ] } ] } |