Screenshot & Bookmark Manager by Lasso

Screenshot & Bookmark Manager by Lasso

Collect ideas to inspire your creativity. Save screenshots, web links and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Screenshot & Bookmark Manager by Lasso",
  "version": "1.5.12",
  "manifest_version": 3,
  "minimum_chrome_version": "93",
  "description": "Collect ideas to inspire your creativity. Save screenshots, web links and more.",
  "action": {
    "default_title": "Click to launch Lasso",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "32": "img/32x32.png",
    "48": "img/48x48.png",
    "128": "img/128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "*://*/*"
      ],
      "js": [
        "libs/jquery.js",
        "libs/cropper.js",
        "js/content_script.js"
      ],
      "css": [
        "css/content-script-style.css"
      ],
      "start_at": "idle"
    },
    {
      "matches": [
        "https://www.lasso.net/*",
        "https://www.lasso1.net/*"
      ],
      "js": [
        "js/inject_script.js"
      ],
      "start_at": "idle",
      "world": "MAIN",
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/img/*.png",
        "screenshot.html",
        "/libs/jquery.js"
      ],
      "matches": [
        "<all_urls>",
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "scripting",
    "unlimitedStorage",
    "contextMenus",
    "notifications"
  ],
  "host_permissions": [
    "<all_urls>",
    "*://*/*"
  ]
}