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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}