Highlight to Hilite.me
This extension allows the user to highlight code to send to hilite.me
What is Highlight to Hilite.me?
Highlight to Hilite.me is a Chrome extension developed by http://terryseidler.com, and its main feature is "This extension allows the user to highlight code to send to hilite.me".
Extension Screenshots
Download Highlight to Hilite.me Extension CRX File
Download Highlight to Hilite.me 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
Ever found some nice code you wanted to copy to a blog post? This extension lets you select that code, right click it and run it through the hilite.me API to generate proper code highlighted HTML. The selected code will be copied to your clipboard, ready for use in one of your blog posts!
Extension Basic Information
Name | |
ID | iaenhklkflbfmpcafgalelagbdileikn |
Official URL | https://chrome.google.com/webstore/detail/highlight-to-hiliteme/iaenhklkflbfmpcafgalelagbdileikn |
Description | This extension allows the user to highlight code to send to hilite.me |
File Size | 15.82 KB |
Installation Count | 76 |
Current Version | 0.1 |
Last Updated | 2016-03-10 |
Publish Date | 2016-03-10 |
Rating | 5.00/5 Total 1 Ratings |
Developer | http://terryseidler.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/tseidler/extension-chrome-hightlight-code |
Help Page URL | https://github.com/tseidler/extension-chrome-hightlight-code/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Highlight to Hilite.me", "description": "This extension allows the user to highlight code to send to hilite.me", "version": "0.1", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "options_page": "options\/options.html", "browser_action": { "default_icon": { "19": "icons\/icon19.png", "38": "icons\/icon38.png" }, "default_popup": "options\/options.html" }, "permissions": [ "clipboardWrite", "contextMenus", "storage", "notifications", "http:\/\/hilite.me\/" ], "background": { "scripts": [ "main.js" ], "persistent": false }, "content_scripts": [ { "matches": [ " |