K-12

K-12

This open's the K12 website! It Can Prevent A Page From Timing Out.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "K-12",
  "icons": {
    "16": "img/16x16.png",
    "48": "img/48x48.png",
    "128": "img/128x128.png"
  },
  "description": "This open's the K12 website! It Can Prevent A Page From Timing Out.",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "version": "4.7.5",
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true,
      "js": [
        "js/timeout.js"
      ]
    }
  ],
  "incognito": "split",
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "contextMenus"
  ],
  "browser_action": {}
}