Encode
Make a string to a code block.
Cos'è Encode?
Encode è un'estensione di Chrome sviluppata da tsuruda, e la sua funzione principale è "Make a string to a code block.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Encode
Scarica i file di estensione Encode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
                        Encode is a chrome extension to make selected text a code block.                     Informazioni di Base sull'Estensione
| Nome |   |  
| ID | jahidgfhkihpbdldkjhpcccbaklbblha | 
| URL Ufficiale | https://chromewebstore.google.com/detail/encode/jahidgfhkihpbdldkjhpcccbaklbblha | 
| Descrizione | Make a string to a code block. | 
| Dimensione del File | 4.95 KB | 
| Conteggio Installazioni | 46 | 
| Versione Corrente | 0.0.3 | 
| Ultimo Aggiornamento | 2018-10-31 | 
| Data di Pubblicazione | 2018-10-31 | 
| Sviluppatore | tsuruda | 
| [email protected] | |
| Tipo di Pagamento | free | 
| Sito Web dell'Estensione | https://github.com/dulltz/encode | 
| Lingue Supportate | 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."
        }
    }
}  |  |