View href
This extension shows the href of all the links on a page along with its title while hovering
Cos'è View href?
View href è un'estensione di Chrome sviluppata da https://rajbhadra.com, e la sua funzione principale è "This extension shows the href of all the links on a page along with its title while hovering".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione View href
Scarica i file di estensione View href in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | jfgnoakafnnfkgciganaegpjnnejbimk |
| URL Ufficiale | https://chromewebstore.google.com/detail/view-href/jfgnoakafnnfkgciganaegpjnnejbimk |
| Descrizione | This extension shows the href of all the links on a page along with its title while hovering |
| Dimensione del File | 3.72 KB |
| Conteggio Installazioni | 84 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2014-07-07 |
| Data di Pubblicazione | 2014-07-07 |
| Sviluppatore | https://rajbhadra.com |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
}
]
} | |