Add URL to page title
Simply adds the URL to the title bar.
What is Add URL to page title?
Add URL to page title is a Chrome extension developed by Simon Perry, and its main feature is "Simply adds the URL to the title bar.".
Download Add URL to page title Extension CRX File
Download Add URL to page title extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Add URL to page title |
ID | ghpeimfjbonkimelnkbgekmcboomkgmi |
Official URL | https://chromewebstore.google.com/detail/add-url-to-page-title/ghpeimfjbonkimelnkbgekmcboomkgmi |
Description | Simply adds the URL to the title bar. |
File Size | 2.79 KB |
Installation Count | 733 |
Current Version | 1.0 |
Last Updated | 2013-09-17 |
Publish Date | 2013-09-17 |
Rating | 4.29/5 Total 7 Ratings |
Developer | Simon Perry |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |