Encode
Make a string to a code block.
Qu'est-ce que Encode ?
Encode est une extension Chrome développée par tsuruda, et sa fonction principale est "Make a string to a code block.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Encode
Téléchargez les fichiers d'extension Encode au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Encode is a chrome extension to make selected text a code block.
Informations de Base sur l'Extension
Nom | Encode |
ID | jahidgfhkihpbdldkjhpcccbaklbblha |
URL Officiel | https://chromewebstore.google.com/detail/encode/jahidgfhkihpbdldkjhpcccbaklbblha |
Description | Make a string to a code block. |
Taille du Fichier | 4.95 KB |
Nombre d'Installations | 46 |
Version Actuelle | 0.0.3 |
Dernière Mise à Jour | 2018-10-31 |
Date de Publication | 2018-10-31 |
Développeur | tsuruda |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/dulltz/encode |
Langues Prises en Charge | 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." } } } |