Platstack: The Save button for the internet

Platstack: The Save button for the internet

Capture, & share the “greatest hits” of your internet experience - whether it’s research at work or collecting the best memes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "4.5.7",
  "default_locale": "en",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "16": "images/logo_16.png",
    "32": "images/logo_32.png",
    "48": "images/logo_48.png",
    "128": "images/logo_128.png"
  },
  "author": "Platstack, LLC",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*",
        "/animations/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "scripting",
    "contextMenus"
  ],
  "externally_connectable": {
    "matches": [
      "https://platstack.com/*",
      "https://www.platstack.com/*",
      "https://dev.platstack.com/*",
      "http://localhost:3000/*",
      "https://platstack-frontend-staging.herokuapp.com/*"
    ]
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+P",
        "mac": "Command+Shift+P"
      }
    }
  },
  "action": {}
}