Just Save

Just Save

A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Just Save",
  "version": "0.0.2",
  "description": "A simple WebExtension for skipping the \"Save As\" dialog when saving images, pages and links.",
  "icons": {
    "48": "icons/just-save-48.png",
    "96": "icons/just-save-96.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "45.0"
    }
  },
  "background": {
    "persistent": false,
    "scripts": [
      "just-save.js"
    ]
  },
  "permissions": [
    "contextMenus",
    "downloads"
  ]
}