HyperG - Automatic Hyperlinks In Gmail
HyperG - Automatic Hyperlinks In Gmail
Τι είναι το HyperG - Automatic Hyperlinks In Gmail;
Το HyperG - Automatic Hyperlinks In Gmail είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον kcurtis, και η κύρια λειτουργία του είναι "HyperG - Automatic Hyperlinks In Gmail".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης HyperG - Automatic Hyperlinks In Gmail
Λήψη αρχείων επέκτασης HyperG - Automatic Hyperlinks In Gmail σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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!
Βασικές Πληροφορίες Επέκτασης
Όνομα | HyperG - Automatic Hyperlinks In Gmail |
ID | achofajdllpmammddgfibkchijpgepgo |
Επίσημο URL | https://chromewebstore.google.com/detail/hyperg-automatic-hyperlin/achofajdllpmammddgfibkchijpgepgo |
Περιγραφή | HyperG - Automatic Hyperlinks In Gmail |
Μέγεθος Αρχείου | 188 KB |
Αριθμός Εγκαταστάσεων | 295 |
Τρέχουσα Έκδοση | 1.0.0 |
Τελευταία Ενημέρωση | 2017-04-14 |
Ημερομηνία Δημοσίευσης | 2017-04-14 |
Αξιολόγηση | 4.50/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | kcurtis |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" ] } |