PyQuickie

PyQuickie

A python problem provider with a built in Idle you can use anywhere in the Web. Hassle Free and Easy to use

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PyQuickie",
  "manifest_version": 2,
  "version": "1.0.1",
  "description": "A python problem provider with a built in Idle you can use anywhere in the Web. Hassle Free and Easy to use",
  "icons": {
    "16": "logo2.png",
    "48": "logo2.png",
    "128": "logo2.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "logo2.png",
    "default_title": "paCEE code editor"
  },
  "background": {
    "scripts": [
      "./jquery.js",
      "background.js"
    ]
  },
  "permissions": [
    "contextMenus"
  ],
  "web_accessible_resources": [
    "*.html",
    "/static/*"
  ]
}