Encode

Make a string to a code block.

Wat is Encode?

Encode is een Chrome-extensie ontwikkeld door tsuruda, en de belangrijkste functie is "Make a string to a code block.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Encode

Download Encode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Encode is a chrome extension to make selected text a code block.                    

Basisinformatie over de Extensie

Naam Encode Encode
ID jahidgfhkihpbdldkjhpcccbaklbblha
Officiële URL https://chromewebstore.google.com/detail/encode/jahidgfhkihpbdldkjhpcccbaklbblha
Beschrijving Make a string to a code block.
Bestandsgrootte 4.95 KB
Aantal Installaties 46
Huidige Versie 0.0.3
Laatst Bijgewerkt 2018-10-31
Publicatiedatum 2018-10-31
Ontwikkelaar tsuruda
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/dulltz/encode
Ondersteunde Talen 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."
        }
    }
}