Encode
Make a string to a code block.
Was ist Encode?
Encode ist eine Chrome-Erweiterung, die von tsuruda entwickelt wurde, und ihr Hauptmerkmal ist "Make a string to a code block.".
Erweiterungsscreenshots
Encode-Erweiterungs-CRX-Datei herunterladen
Laden Sie Encode-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Encode is a chrome extension to make selected text a code block. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jahidgfhkihpbdldkjhpcccbaklbblha |
| Offizielle URL | https://chromewebstore.google.com/detail/encode/jahidgfhkihpbdldkjhpcccbaklbblha |
| Beschreibung | Make a string to a code block. |
| Dateigröße | 4.95 KB |
| Installationsanzahl | 46 |
| Aktuelle Version | 0.0.3 |
| Letztes Update | 2018-10-31 |
| Veröffentlichungsdatum | 2018-10-31 |
| Entwickler | tsuruda |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/dulltz/encode |
| Unterstützte Sprachen | 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."
}
}
} | |