Repl.it Classroom Export Tool

Repl.it Classroom Export Tool

Export all of your Repl.it Classroom data, including assignments, auto-grading configurations, submissions, and students instantly

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Repl.it Classroom Export Tool",
  "version": "1.0.3",
  "icons": {
    "16": "assets/icons/favicon-16.png",
    "32": "assets/icons/favicon-32.png",
    "48": "assets/icons/favicon-48.png",
    "128": "assets/icons/favicon-128.png"
  },
  "description": "Export all of your Repl.it Classroom data, including assignments, auto-grading configurations, submissions, and students instantly",
  "homepage_url": "https://codingrooms.com/replit-classroom-export-tool/",
  "short_name": "Repl.it Classroom Export Tool",
  "permissions": [
    "activeTab"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "author": "Coding Rooms",
  "minimum_chrome_version": "49",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icons/favicon-16.png",
      "32": "assets/icons/favicon-32.png",
      "48": "assets/icons/favicon-48.png",
      "128": "assets/icons/favicon-128.png"
    },
    "default_title": "Repl.it Classroom Export Tool",
    "chrome_style": false
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true,
    "chrome_style": false
  },
  "background": {
    "scripts": [
      "js/background.bundle.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://repl.it/*",
        "https://repl.it/*",
        "http://*.repl.it/*",
        "https://*.repl.it/*"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ]
    }
  ]
}