Add URL to page title

Simply adds the URL to the title bar.

¿Qué es Add URL to page title?

Add URL to page title es una extensión de Chrome desarrollada por Simon Perry, y su función principal es "Simply adds the URL to the title bar.".

Descargar Archivo CRX de la Extensión Add URL to page title

Descarga archivos de extensión Add URL to page title en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Add URL to page title Add URL to page title
ID ghpeimfjbonkimelnkbgekmcboomkgmi
URL Oficial https://chromewebstore.google.com/detail/add-url-to-page-title/ghpeimfjbonkimelnkbgekmcboomkgmi
Descripción Simply adds the URL to the title bar.
Tamaño del Archivo 2.79 KB
Cantidad de Instalaciones 733
Versión Actual 1.0
Última Actualización 2013-09-17
Fecha de Publicación 2013-09-17
Calificación 4.29/5 Total de 7 Calificaciones
Desarrollador Simon Perry
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}