Add URL to page title

Simply adds the URL to the title bar.

Was ist Add URL to page title?

Add URL to page title ist eine Chrome-Erweiterung, die von Simon Perry entwickelt wurde, und ihr Hauptmerkmal ist "Simply adds the URL to the title bar.".

Add URL to page title-Erweiterungs-CRX-Datei herunterladen

Laden Sie Add URL to page title-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Add URL to page title Add URL to page title
ID ghpeimfjbonkimelnkbgekmcboomkgmi
Offizielle URL https://chromewebstore.google.com/detail/add-url-to-page-title/ghpeimfjbonkimelnkbgekmcboomkgmi
Beschreibung Simply adds the URL to the title bar.
Dateigröße 2.79 KB
Installationsanzahl 733
Aktuelle Version 1.0
Letztes Update 2013-09-17
Veröffentlichungsdatum 2013-09-17
Bewertung 4.29/5 Insgesamt 7 Bewertungen
Entwickler Simon Perry
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}