Home | History | Annotate | Download | only in apps_debugger
      1 {
      2   "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDdTTWp0WWTp4XU15/xCchl4x4ZvG31cx/VT567UDgMLUL/+8j+3w3C87UJemJ3I5x81XJv8lhK3eIxR05H59UFsW9C70/hZCQeOhi5Uutl1gAlG4xsJAX9EQjFmmKsN88wmfZvxNPlu0WoxtHxjXKogRfk+wujanMyXnmhHaDrvwIDAQAB",
      3   "name": "Apps Developer Tool",
      4   "description": "Develop and Debug Chrome apps.",
      5   "manifest_version": 2,
      6   "version": "0.1",
      7   "app": {
      8     "background": {
      9       "scripts": ["background.js"]
     10     },
     11     "content_security_policy":
     12         "default-src 'self'; style-src 'unsafe-inline' *; img-src *;"
     13   },
     14   "permissions": [
     15     "notifications",
     16     "management",
     17     "developerPrivate",
     18     "fileSystem",
     19     "chrome://resources/",
     20     "chrome://extension-icon/"],
     21   "icons": {
     22     "16": "images/dev-icon-16.png",
     23     "128": "images/dev-icon-128.png"
     24   },
     25   "web_accessible_resources": ["images/trash.png"]
     26 }
     27