CodeView
Make Code View formater
Cos'è CodeView?
CodeView è un'estensione di Chrome sviluppata da Elvis Macak, e la sua funzione principale è "Make Code View formater".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CodeView
Scarica i file di estensione CodeView 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
Make a better code preview in chrome tab
using https://code.google.com/p/google-code-prettify/ Informazioni di Base sull'Estensione
| Nome | |
| ID | lpmlapmjlppjjlfiajklndnakmoafcin |
| URL Ufficiale | https://chrome.google.com/webstore/detail/codeview/lpmlapmjlppjjlfiajklndnakmoafcin |
| Descrizione | Make Code View formater |
| Dimensione del File | 98.22 KB |
| Conteggio Installazioni | 72 |
| Versione Corrente | 0.8.0 |
| Ultimo Aggiornamento | 2013-12-01 |
| Data di Pubblicazione | 2013-12-01 |
| Valutazione | 3.33/5 Totale 3 Valutazioni |
| Sviluppatore | Elvis Macak |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"ftp:\/\/*\/*",
"file:\/\/\/*"
],
"js": [
"zepto.min.js",
"page.js"
],
"run_at": "document_end"
}
],
"browser_action": {
"default_icon": "assets\/48.png",
"default_title": "Make Code View formater"
},
"description": "Make Code View formater",
"icons": {
"16": "assets\/16.png",
"48": "assets\/48.png",
"128": "assets\/128.png"
},
"manifest_version": 2,
"name": "CodeView",
"permissions": [
"background",
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"web_accessible_resources": [
"run_prettify.js",
"zepto.min.js",
"pretty\/*"
],
"version": "0.8.0"
} | |