HyperG - Automatic Hyperlinks In Gmail
HyperG - Automatic Hyperlinks In Gmail
Wat is HyperG - Automatic Hyperlinks In Gmail?
HyperG - Automatic Hyperlinks In Gmail is een Chrome-extensie ontwikkeld door kcurtis, en de belangrijkste functie is "HyperG - Automatic Hyperlinks In Gmail".
Extensie Screenshots
Download het CRX-bestand van de extensie HyperG - Automatic Hyperlinks In Gmail
Download HyperG - Automatic Hyperlinks In Gmail-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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! Basisinformatie over de Extensie
| Naam | |
| ID | achofajdllpmammddgfibkchijpgepgo |
| Officiële URL | https://chromewebstore.google.com/detail/hyperg-automatic-hyperlin/achofajdllpmammddgfibkchijpgepgo |
| Beschrijving | HyperG - Automatic Hyperlinks In Gmail |
| Bestandsgrootte | 188 KB |
| Aantal Installaties | 295 |
| Huidige Versie | 1.0.0 |
| Laatst Bijgewerkt | 2017-04-14 |
| Publicatiedatum | 2017-04-14 |
| Beoordeling | 4.50/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | kcurtis |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
} | |