Encode
Make a string to a code block.
What is Encode?
Encode is a Chrome extension developed by tsuruda, and its main feature is "Make a string to a code block.".
Extension Screenshots
Download Encode Extension CRX File
Download Encode 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
Encode is a chrome extension to make selected text a code block.
Extension Basic Information
Name | Encode |
ID | jahidgfhkihpbdldkjhpcccbaklbblha |
Official URL | https://chromewebstore.google.com/detail/encode/jahidgfhkihpbdldkjhpcccbaklbblha |
Description | Make a string to a code block. |
File Size | 4.95 KB |
Installation Count | 46 |
Current Version | 0.0.3 |
Last Updated | 2018-10-31 |
Publish Date | 2018-10-31 |
Developer | tsuruda |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/dulltz/encode |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Encode", "version": "0.0.3", "description": "Make a string to a code block.", "manifest_version": 2, "permissions": [ "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.cybozu.com\/*", "https:\/\/*.cybozu-dev.com\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_title": "Make selected text to a code block" }, "commands": { "code-block": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Make selected text to a code block." } } } |