HyperG - Automatic Hyperlinks In Gmail

HyperG - Automatic Hyperlinks In Gmail

HyperG - Automatic Hyperlinks In Gmailとは何ですか?

HyperG - Automatic Hyperlinks In Gmailはkcurtisによって開発されたChromeの拡張機能で、その主な機能は「HyperG - Automatic Hyperlinks In Gmail」です。

拡張機能のスクリーンショット

screenshot
screenshot

HyperG - Automatic Hyperlinks In Gmail拡張機能のCRXファイルをダウンロード

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