WebSatchel - Your personal web archive!

WebSatchel - Your personal web archive!

Instead of bookmarking a web page save its copy on Cloud. Bookmarked link may change or disappear but saved page will not. Organize saved pages into a knowledge base. Visit WebSatchel.com home page and see why saving pages is better then bookmarking.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "WebSatchel - Your personal web archive!",
  "version": "2.1.0",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "59.0"
    }
  },
  "author": "WebSatchel",
  "description": "Allows you to make a copy of any web page and save it on Cloud. You can highlight important parts of the page before saving. Access and manage your stored pages anytime anywhere using your free WebSatchel account. https://websatchel.com",
  "homepage_url": "https://websatchel.com",
  "icons": {
    "32": "icons/satchel_32x32.png",
    "48": "icons/satchel_48x48.png"
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "webNavigation",
    "storage",
    "bookmarks"
  ],
  "background": {
    "scripts": [
      "background/config.js",
      "background/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/satchel_24x24.png",
    "default_title": "WebSatchel",
    "default_popup": "popup/popup.html",
    "browser_style": false
  },
  "web_accessible_resources": [
    "fonts/*.woff2",
    "img/spinner.svg",
    "img/user.png",
    "img/logout.png",
    "img/marker.png",
    "img/eraser.png",
    "img/logo_name.png",
    "img/logo_icon.svg",
    "img/hint.png",
    "img/websatchel.png",
    "icons/satchel_64x64.png",
    "content_scripts/page_marker/page_marker.html",
    "content_scripts/page_marker/page_marker.css",
    "content_scripts/page_marker/tabs.css",
    "content_scripts/ui/status_view.html",
    "content_scripts/ui/status_view.css",
    "popup/popup-m.css",
    "lib/page-include.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://websatchel.com/a2/*"
      ],
      "run_at": "document_start",
      "js": [
        "content_scripts/message_bus/a2.js"
      ]
    }
  ]
}