Save In…

Save In…

Saves {image, video, audio, links, selection, page} in directories relative to the default download directory.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "3.7.1",
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "{72d92df5-2aa0-4b06-b807-aa21767545cd}"
    }
  },
  "developer": {
    "name": "Ng Guoyou",
    "url": "https://github.com/gyng/save-in"
  },
  "homepage_url": "https://github.com/gyng/save-in",
  "background": {
    "scripts": [
      "src/vendor/browser-polyfill.js",
      "src/vendor/content-disposition.js",
      "src/chrome-detector.js",
      "src/constants.js",
      "src/history.js",
      "src/notification.js",
      "src/path.js",
      "src/download.js",
      "src/router.js",
      "src/shortcut.js",
      "src/messaging.js",
      "src/headers.js",
      "src/variable.js",
      "src/menu.js",
      "src/option.js",
      "src/index.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/content/content.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>",
    "activeTab",
    "tabs",
    "contextMenus",
    "downloads",
    "notifications",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "options_ui": {
    "browser_style": true,
    "chrome_style": true,
    "page": "src/options/options.html"
  },
  "icons": {
    "48": "icons/ic_archive_black_48px.png",
    "96": "icons/ic_archive_black_96px.png",
    "128": "icons/ic_archive_black_128px.png"
  }
}