Add URL to page title
Simply adds the URL to the title bar.
Wat is Add URL to page title?
Add URL to page title is een Chrome-extensie ontwikkeld door Simon Perry, en de belangrijkste functie is "Simply adds the URL to the title bar.".
Download het CRX-bestand van de extensie Add URL to page title
Download Add URL to page title-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Add URL to page title |
ID | ghpeimfjbonkimelnkbgekmcboomkgmi |
Officiële URL | https://chromewebstore.google.com/detail/add-url-to-page-title/ghpeimfjbonkimelnkbgekmcboomkgmi |
Beschrijving | Simply adds the URL to the title bar. |
Bestandsgrootte | 2.79 KB |
Aantal Installaties | 733 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2013-09-17 |
Publicatiedatum | 2013-09-17 |
Beoordeling | 4.29/5 Totaal 7 Beoordelingen |
Ontwikkelaar | Simon Perry |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |