Add URL to page title

Simply adds the URL to the title bar.

Qu'est-ce que Add URL to page title ?

Add URL to page title est une extension Chrome développée par Simon Perry, et sa fonction principale est "Simply adds the URL to the title bar.".

Télécharger le fichier CRX de l'extension Add URL to page title

Téléchargez les fichiers d'extension Add URL to page title au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Add URL to page title Add URL to page title
ID ghpeimfjbonkimelnkbgekmcboomkgmi
URL Officiel https://chromewebstore.google.com/detail/add-url-to-page-title/ghpeimfjbonkimelnkbgekmcboomkgmi
Description Simply adds the URL to the title bar.
Taille du Fichier 2.79 KB
Nombre d'Installations 733
Version Actuelle 1.0
Dernière Mise à Jour 2013-09-17
Date de Publication 2013-09-17
Évaluation 4.29/5 Total 7 Évaluations
Développeur Simon Perry
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}