hyperlinker
creates hyperlinks from plain text on website
What is hyperlinker?
hyperlinker is a Chrome extension developed by KoharaKazuya, and its main feature is "creates hyperlinks from plain text on website".
Extension Screenshots
Download hyperlinker Extension CRX File
Download hyperlinker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
A simple Google Chrome extension creates hyperlinks from plain text on website. HyperLinker provides two ways to create hyperlinks. 1. Use Chrome keyboard shortcuts (default Alt+Shift+H for hyperlinker) to toggle activate/deactivate hyperlinks. 2. At every click the HyperLinker icon (in chrome menu), toggle activate/deactivate hyperlinks.
Extension Basic Information
Name | |
ID | ipbklljhldnlobbmnjaalbebbahamcmk |
Official URL | https://chrome.google.com/webstore/detail/hyperlinker/ipbklljhldnlobbmnjaalbebbahamcmk |
Description | creates hyperlinks from plain text on website |
File Size | 17.26 KB |
Installation Count | 38 |
Current Version | 2.0.0 |
Last Updated | 2021-04-04 |
Publish Date | 2019-11-09 |
Developer | KoharaKazuya |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "hyperlinker", "description": "creates hyperlinks from plain text on website", "version": "2.0.0", "manifest_version": 3, "permissions": [ "activeTab", "scripting" ], "icons": { "48": "assets\/images\/icon48_disabled.png", "128": "assets\/images\/icon128_disabled.png" }, "background": { "service_worker": "background.js" }, "action": { "name": "Toggle URL activation" }, "commands": { "toggle-hyperlink-activation": { "suggested_key": { "default": "Alt+Shift+H" }, "description": "Toggle URL activation" } } } |