Autosave webpage

Autosave webpage

Save web page. Auto saves the tab's html file in the chosen directory on a scheduled timer. Also refreshes the page on a scheduled…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Autosave webpage",
  "description": " ",
  "version": "0.2",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon128.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/jquery.min.js",
      "js/background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "downloads",
    "tabs",
    "<all_urls>"
  ]
}