Link Preview
Generates preview window of link that follows mouse when hovering specific elements
Cos'è Link Preview?
Link Preview è un'estensione di Chrome sviluppata da dapoDev, e la sua funzione principale è "Generates preview window of link that follows mouse when hovering specific elements".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Link Preview
Scarica i file di estensione Link Preview 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
Informazioni di Base sull'Estensione
Nome | |
ID | bjoabjghhaegfioipdfaggpecmegfelp |
URL Ufficiale | https://chrome.google.com/webstore/detail/link-preview/bjoabjghhaegfioipdfaggpecmegfelp |
Descrizione | Generates preview window of link that follows mouse when hovering specific elements |
Dimensione del File | 39.05 KB |
Conteggio Installazioni | 230 |
Versione Corrente | 1.3 |
Ultimo Aggiornamento | 2017-12-15 |
Data di Pubblicazione | 2017-12-15 |
Valutazione | 1.00/5 Totale 2 Valutazioni |
Sviluppatore | dapoDev |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/emdap/LinkPreview |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Link Preview", "description": "Generates preview window of link that follows mouse when hovering specific elements", "version": "1.3", "background": { "scripts": [ "thirdparty\/jquery.min.js" ] }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/www.kijiji.ca\/b*", "https:\/\/www.kijiji.ca\/b*" ], "js": [ "thirdparty\/jquery.min.js", "webSpecific\/kijiji.js", "webSpecific\/createFields.js", "previewWindow.js", "bindings.js", "main.js" ], "css": [ "tailDiv.css" ], "run_at": "document_start" } ] } |