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 |
Eメール | [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." } } } |