View href
This extension shows the href of all the links on a page along with its title while hovering
Hvad er View href?
View href er en Chrome-udvidelse udviklet af https://rajbhadra.com, og dens hovedfunktion er "This extension shows the href of all the links on a page along with its title while hovering".
Udvidelsesskærmbilleder
Download View href-udvidelses-CRX-fil
Download View href-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | View href |
ID | jfgnoakafnnfkgciganaegpjnnejbimk |
Officiel URL | https://chromewebstore.google.com/detail/view-href/jfgnoakafnnfkgciganaegpjnnejbimk |
Beskrivelse | This extension shows the href of all the links on a page along with its title while hovering |
Filstørrelse | 3.72 KB |
Antal Installationer | 84 |
Nuværende Version | 1.0 |
Senest Opdateret | 2014-07-07 |
Udgivelsesdato | 2014-07-07 |
Udvikler | https://rajbhadra.com |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |