HyperG - Automatic Hyperlinks In Gmail
HyperG - Automatic Hyperlinks In Gmail
Co je HyperG - Automatic Hyperlinks In Gmail?
HyperG - Automatic Hyperlinks In Gmail je rozšíření Chrome vyvinuté kcurtis, a jeho hlavní funkcí je „HyperG - Automatic Hyperlinks In Gmail“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření HyperG - Automatic Hyperlinks In Gmail
Stáhněte si soubory rozšíření HyperG - Automatic Hyperlinks In Gmail ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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! Základní Informace o Rozšíření
| Název | |
| ID | achofajdllpmammddgfibkchijpgepgo |
| Oficiální URL | https://chromewebstore.google.com/detail/hyperg-automatic-hyperlin/achofajdllpmammddgfibkchijpgepgo |
| Popis | HyperG - Automatic Hyperlinks In Gmail |
| Velikost souboru | 188 KB |
| Počet instalací | 295 |
| Aktuální Verze | 1.0.0 |
| Poslední Aktualizace | 2017-04-14 |
| Datum Vydání | 2017-04-14 |
| Hodnocení | 4.50/5 Celkem 4 Hodnocení |
| Vývojář | kcurtis |
| Typ Platby | free |
| Podporované Jazyky | 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"
]
} | |