HyperG - Automatic Hyperlinks In Gmail

HyperG - Automatic Hyperlinks In Gmail

HyperG - Automatic Hyperlinks In Gmail क्या है?

HyperG - Automatic Hyperlinks In Gmail kcurtis द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "HyperG - Automatic Hyperlinks In Gmail"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में HyperG - Automatic Hyperlinks In Gmail एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
    ]
}