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”。
擴展截圖
下載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 |
ID | achofajdllpmammddgfibkchijpgepgo |
官方網址 | 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" ] } |