Encode
Make a string to a code block.
Vad är Encode?
Encode är en Chrome-tillägg utvecklad av tsuruda, och dess huvudfunktion är "Make a string to a code block.".
Tilläggsskärmbilder
Ladda ner Encode-förlängningens CRX-fil
Ladda ner Encode-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Encode is a chrome extension to make selected text a code block.
Grundläggande Information om Tillägg
Namn | Encode |
ID | jahidgfhkihpbdldkjhpcccbaklbblha |
Officiell webbadress | https://chromewebstore.google.com/detail/encode/jahidgfhkihpbdldkjhpcccbaklbblha |
Beskrivning | Make a string to a code block. |
Filstorlek | 4.95 KB |
Antal Installationer | 46 |
Aktuell Version | 0.0.3 |
Senast Uppdaterad | 2018-10-31 |
Publiceringsdatum | 2018-10-31 |
Utvecklare | tsuruda |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/dulltz/encode |
Stödda Språk | 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." } } } |