Encode
Make a string to a code block.
什么是Encode?
Encode是由tsuruda开发的Chrome扩展程序,该扩展的主要功能是“Make a string to a code block.”。
扩展截图
下载Encode扩展crx文件
下载Encode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Encode is a chrome extension to make selected text a code block.
扩展基本信息
名称 | Encode |
ID | jahidgfhkihpbdldkjhpcccbaklbblha |
官方URL | https://chromewebstore.google.com/detail/encode/jahidgfhkihpbdldkjhpcccbaklbblha |
简介 | Make a string to a code block. |
文件大小 | 4.95 KB |
安装次数 | 46 |
当前版本 | 0.0.3 |
更新时间 | 2018-10-31 |
上架时间 | 2018-10-31 |
开发者 | tsuruda |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/dulltz/encode |
支持的语言 | 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." } } } |