Yawas

Yawas

Highlight Web pages; stored online and recreated automatically when you revisit a page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Yawas",
  "author": "Laurent Denoue",
  "manifest_version": 2,
  "version": "7.3.2",
  "description": "Highlight Web pages; stored online and recreated automatically when you revisit a page",
  "background": {
    "scripts": [
      "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
    }
  ],
  "permissions": [
    "https://www.google.com/bookmarks/*",
    "storage",
    "contextMenus",
    "tabs"
  ],
  "browser_action": {
    "default_title": "Yawas",
    "default_icon": "yawas_on_128.png",
    "default_popup": "options.html"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.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"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}