Yawas

Yawas

Highlight Web pages; stored in your browser bookmarks, searchable, and recreated automatically when you revisit a page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Yawas",
  "author": "Laurent Denoue",
  "manifest_version": 3,
  "version": "7.4.0",
  "description": "Highlight Web pages; stored in your browser bookmarks, searchable, and recreated automatically when you revisit a page",
  "background": {
    "service_worker": "yawas-background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://*.slack.com/*",
        "*://web.whatsapp.com/*",
        "*://www.google.com/bookmarks/*",
        "*://accounts.google.com/*"
      ],
      "js": [
        "yawas-content-script.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "localsearch.html",
        "localedit.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus",
    "tabs",
    "bookmarks"
  ],
  "action": {
    "default_title": "Yawas",
    "default_icon": "yawas_on_128.png",
    "default_popup": "options.html"
  },
  "icons": {
    "128": "yawas_on_128.png"
  },
  "commands": {
    "yawas-yellow": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Alt+Shift+Y"
      },
      "description": "Yawas Yellow"
    },
    "yawas-red": {
      "suggested_key": {
        "default": "Ctrl+Shift+R",
        "mac": "Alt+Shift+R"
      },
      "description": "Yawas Red"
    },
    "yawas-blue": {
      "suggested_key": {
        "default": "Ctrl+Shift+B",
        "mac": "Alt+Shift+B"
      },
      "description": "Yawas Blue"
    },
    "yawas-green": {
      "suggested_key": {
        "default": "Ctrl+Shift+G",
        "mac": "Alt+Shift+G"
      },
      "description": "Yawas Green"
    }
  }
}