Add URL to page title
Simply adds the URL to the title bar.
Vad är Add URL to page title?
Add URL to page title är en Chrome-tillägg utvecklad av Simon Perry, och dess huvudfunktion är "Simply adds the URL to the title bar.".
Ladda ner Add URL to page title-förlängningens CRX-fil
Ladda ner Add URL to page title-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Add URL to page title |
ID | ghpeimfjbonkimelnkbgekmcboomkgmi |
Officiell webbadress | https://chromewebstore.google.com/detail/add-url-to-page-title/ghpeimfjbonkimelnkbgekmcboomkgmi |
Beskrivning | Simply adds the URL to the title bar. |
Filstorlek | 2.79 KB |
Antal Installationer | 733 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2013-09-17 |
Publiceringsdatum | 2013-09-17 |
Betyg | 4.29/5 Totalt 7 Betyg |
Utvecklare | Simon Perry |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |