Encode
Make a string to a code block.
Apa itu Encode?
Encode adalah ekstensi Chrome yang dikembangkan oleh tsuruda, dan fitur utamanya adalah "Make a string to a code block.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Encode
Unduh file ekstensi Encode dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Encode is a chrome extension to make selected text a code block.
Informasi Dasar Ekstensi
Nama | Encode |
ID | jahidgfhkihpbdldkjhpcccbaklbblha |
URL Resmi | https://chromewebstore.google.com/detail/encode/jahidgfhkihpbdldkjhpcccbaklbblha |
Deskripsi | Make a string to a code block. |
Ukuran File | 4.95 KB |
Jumlah Instalasi | 46 |
Versi Saat Ini | 0.0.3 |
Terakhir Diperbarui | 2018-10-31 |
Tanggal Publikasi | 2018-10-31 |
Pengembang | tsuruda |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/dulltz/encode |
Bahasa yang Didukung | 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." } } } |