metaview

metaview

Bookmark web pages to Scrapbox with thumbnail, description, keywords, and more metadata.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "metaview",
  "version": "2.2.9",
  "manifest_version": 3,
  "description": "Bookmark web pages to Scrapbox with thumbnail, description, keywords, and more metadata. ",
  "action": {},
  "background": {
    "service_worker": "dist/background.js"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+M",
        "mac": "Command+Shift+M"
      }
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "dist/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "storage"
  ]
}