HyperG - Automatic Hyperlinks In Gmail
HyperG - Automatic Hyperlinks In Gmail
Cos'è HyperG - Automatic Hyperlinks In Gmail?
HyperG - Automatic Hyperlinks In Gmail è un'estensione di Chrome sviluppata da kcurtis, e la sua funzione principale è "HyperG - Automatic Hyperlinks In Gmail".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione HyperG - Automatic Hyperlinks In Gmail
Scarica i file di estensione HyperG - Automatic Hyperlinks In Gmail 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
Automatically create hyperlinks in gmail. This extension will save you a ton of time Simply type a word or phrase and HyperG will automatically convert it into a hyperlink. Great for creating email signatures, affiliate links, commonly used words or phrases. Examples: - add matching text "google" with replacement of "google" will automatically link to "http://www.google.com/" - adding matching text "tseg" with replacement of The Search Engine Guys will automatically link to "http://www.tseg.com/" Just make sure to use html in the replacement box. Enjoy!
Informazioni di Base sull'Estensione
Nome | HyperG - Automatic Hyperlinks In Gmail |
ID | achofajdllpmammddgfibkchijpgepgo |
URL Ufficiale | https://chromewebstore.google.com/detail/hyperg-automatic-hyperlin/achofajdllpmammddgfibkchijpgepgo |
Descrizione | HyperG - Automatic Hyperlinks In Gmail |
Dimensione del File | 188 KB |
Conteggio Installazioni | 295 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2017-04-14 |
Data di Pubblicazione | 2017-04-14 |
Valutazione | 4.50/5 Totale 4 Valutazioni |
Sviluppatore | kcurtis |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HyperG - Automatic Hyperlinks In Gmail", "version": "1.0.0", "manifest_version": 2, "description": "HyperG - Automatic Hyperlinks In Gmail", "browser_action": { "default_icon": "icons\/icon-128.png", "default_title": "HyperG - Automatic Hyperlinks In Gmail" }, "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end", "js": [ "content.js" ] } ], "icons": { "128": "icons\/icon-128.png" }, "options_page": "ui\/Rules.html", "web_accessible_resources": [ "\/ui\/*" ], "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs" ] } |