Title with URL
Get the active web page's title and URL.
What is Title with URL?
Title with URL is a Chrome extension developed by R4HS Inc., and its main feature is "Get the active web page's title and URL.".
Extension Screenshots
Download Title with URL Extension CRX File
Download Title with URL 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
You can easily get the active web page's title and URL by this app. Updates: v0.1 - First beta version. v0.2 - Click to copy a title of the active tab page and its URL as from plain text to text/html into clip board.
Extension Basic Information
Name | Title with URL |
ID | cgnjbelglgfnjfdlfdggdeglimegedpp |
Official URL | https://chromewebstore.google.com/detail/title-with-url/cgnjbelglgfnjfdlfdggdeglimegedpp |
Description | Get the active web page's title and URL. |
File Size | 105 KB |
Installation Count | 30 |
Current Version | 0.2 |
Last Updated | 2014-09-25 |
Publish Date | 2014-09-24 |
Rating | 2.00/5 Total 1 Ratings |
Developer | R4HS Inc. |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Title with URL", "description": "Get the active web page's title and URL. ", "version": "0.2", "manifest_version": 2, "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "name": "Retrieve", "default_popup": "popup.html", "default_icon": { "19": "twu-icon-19.png", "38": "twu-icon-38.png" } }, "content_scripts": [ { "matches": [ "http:\/\/*.com\/" ], "js": [ "jquery-2.1.1.min.js", "content_script.js" ] } ], "icons": { "16": "twu-icon-16.png", "128": "twu-icon-128.png" }, "permissions": [ "clipboardWrite", "tabs", "activeTab" ] } |