Caret/manifest.json

38 lines
1.2 KiB
JSON
Raw Normal View History

2013-08-20 00:53:03 +00:00
{
2013-08-21 00:35:25 +00:00
"name": "Caret",
"description": "Professional text editing for Chrome and Chrome OS",
2013-09-04 23:36:33 +00:00
"version": "0.0.10",
2013-08-20 00:53:03 +00:00
"manifest_version": 2,
2013-08-22 17:21:22 +00:00
"icons": {
2013-09-03 04:49:30 +00:00
"128": "icon-128.png",
"32": "icon.png"
2013-08-22 17:21:22 +00:00
},
2013-08-20 00:53:03 +00:00
"app": {
"background": {
"scripts": [ "background.js" ]
}
},
"permissions": [
"clipboardRead",
"clipboardWrite",
"contextMenus",
2013-08-23 23:03:46 +00:00
"storage",
2013-08-20 00:53:03 +00:00
{
"fileSystem": [ "write", "retainEntries" ]
}
],
2013-09-03 04:49:30 +00:00
"kiosk_enabled": false,
"offline_enabled": true,
"file_handlers": {
"text": {
"extensions": [ "as", "as3", "asm", "c", "cpp", "coffee", "conf", "cs", "csh", "css", "csv", "diff", "el", "ejs", "for", "g", "go", "h", "htm", "html", "htmls", "java", "js", "json", "log", "lua", "man", "manifest", "md", "mdoc", "me", "patch", "pl", "py", "rake", "rb", "sh", "shtml", "text", "tsv", "txt", "vcf", "vcs", "wml", "wmls", "wsc", "xml", "yaml", "yml", "zsh" ],
"title": "Caret",
"types": [ "application/javascript", "application/json", "application/x-shellscript", "application/xml", "text/*" ]
}
}
2013-09-01 04:43:41 +00:00
}