View href
This extension shows the href of all the links on a page along with its title while hovering
¿Qué es View href?
View href es una extensión de Chrome desarrollada por https://rajbhadra.com, y su función principal es "This extension shows the href of all the links on a page along with its title while hovering".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión View href
Descarga archivos de extensión View href 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
This extension helps the user to quickly view the href of a link without looking elsewhere by appending the href of the link to the title of the link. Thus the title and the href both can be viewed by a single glance. If the size of the href is greater than 50 characters, then it truncates the string upto 50 characters.
Información Básica de la Extensión
Nombre | View href |
ID | jfgnoakafnnfkgciganaegpjnnejbimk |
URL Oficial | https://chromewebstore.google.com/detail/view-href/jfgnoakafnnfkgciganaegpjnnejbimk |
Descripción | This extension shows the href of all the links on a page along with its title while hovering |
Tamaño del Archivo | 3.72 KB |
Cantidad de Instalaciones | 84 |
Versión Actual | 1.0 |
Última Actualización | 2014-07-07 |
Fecha de Publicación | 2014-07-07 |
Desarrollador | https://rajbhadra.com |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "View href", "short_name": "see href", "description": "This extension shows the href of all the links on a page along with its title while hovering", "version": "1.0", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ] } ] } |