View href
This extension shows the href of all the links on a page along with its title while hovering
Was ist View href?
View href ist eine Chrome-Erweiterung, die von https://rajbhadra.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension shows the href of all the links on a page along with its title while hovering".
Erweiterungsscreenshots
View href-Erweiterungs-CRX-Datei herunterladen
Laden Sie View href-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | View href |
ID | jfgnoakafnnfkgciganaegpjnnejbimk |
Offizielle URL | https://chromewebstore.google.com/detail/view-href/jfgnoakafnnfkgciganaegpjnnejbimk |
Beschreibung | This extension shows the href of all the links on a page along with its title while hovering |
Dateigröße | 3.72 KB |
Installationsanzahl | 84 |
Aktuelle Version | 1.0 |
Letztes Update | 2014-07-07 |
Veröffentlichungsdatum | 2014-07-07 |
Entwickler | https://rajbhadra.com |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |