HyperG - Automatic Hyperlinks In Gmail
HyperG - Automatic Hyperlinks In Gmail
Qu'est-ce que HyperG - Automatic Hyperlinks In Gmail ?
HyperG - Automatic Hyperlinks In Gmail est une extension Chrome développée par kcurtis, et sa fonction principale est "HyperG - Automatic Hyperlinks In Gmail".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension HyperG - Automatic Hyperlinks In Gmail
Téléchargez les fichiers d'extension HyperG - Automatic Hyperlinks In Gmail au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | HyperG - Automatic Hyperlinks In Gmail |
ID | achofajdllpmammddgfibkchijpgepgo |
URL Officiel | https://chromewebstore.google.com/detail/hyperg-automatic-hyperlin/achofajdllpmammddgfibkchijpgepgo |
Description | HyperG - Automatic Hyperlinks In Gmail |
Taille du Fichier | 188 KB |
Nombre d'Installations | 295 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2017-04-14 |
Date de Publication | 2017-04-14 |
Évaluation | 4.50/5 Total 4 Évaluations |
Développeur | kcurtis |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |