Title with URL
Get the active web page's title and URL.
¿Qué es Title with URL?
Title with URL es una extensión de Chrome desarrollada por R4HS Inc., y su función principal es "Get the active web page's title and URL.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Title with URL
Descarga archivos de extensión Title with URL en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Title with URL |
ID | cgnjbelglgfnjfdlfdggdeglimegedpp |
URL Oficial | https://chromewebstore.google.com/detail/title-with-url/cgnjbelglgfnjfdlfdggdeglimegedpp |
Descripción | Get the active web page's title and URL. |
Tamaño del Archivo | 105 KB |
Cantidad de Instalaciones | 30 |
Versión Actual | 0.2 |
Última Actualización | 2014-09-25 |
Fecha de Publicación | 2014-09-24 |
Calificación | 2.00/5 Total de 1 Calificaciones |
Desarrollador | R4HS Inc. |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |