HyperG - Automatic Hyperlinks In Gmail

HyperG - Automatic Hyperlinks In Gmail

HyperG - Automatic Hyperlinks In Gmail là gì?

HyperG - Automatic Hyperlinks In Gmail là một tiện ích mở rộng Chrome được phát triển bởi kcurtis, và tính năng chính của nó là "HyperG - Automatic Hyperlinks In Gmail".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng HyperG - Automatic Hyperlinks In Gmail

Tải xuống các tệp mở rộng HyperG - Automatic Hyperlinks In Gmail dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên HyperG - Automatic Hyperlinks In Gmail HyperG - Automatic Hyperlinks In Gmail
ID achofajdllpmammddgfibkchijpgepgo
URL Chính Thức https://chromewebstore.google.com/detail/hyperg-automatic-hyperlin/achofajdllpmammddgfibkchijpgepgo
Mô tả HyperG - Automatic Hyperlinks In Gmail
Kích Thước Tệp 188 KB
Số Lần Cài Đặt 295
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2017-04-14
Ngày Phát Hành 2017-04-14
Đánh Giá 4.50/5 Tổng số 4 Đánh Giá
Nhà Phát Triển kcurtis
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}