Save Selected Tabs to Files

Save Selected Tabs to Files

Provides ability to save selected tabs to local files.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "1.2.0",
  "author": "YUKI \"Piro\" Hiroshi",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "activeTab",
    "downloads",
    "menus",
    "notifications",
    "storage",
    "tabs"
  ],
  "optional_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "resources/Save.svg"
  },
  "background": {
    "page": "background/background.html"
  },
  "commands": {
    "saveSelectedTabs": {
      "description": "__MSG_command_saveSelectedTabs__"
    }
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "63.0"
    }
  }
}