Repo for Notion

Repo for Notion

Repo for Notion is a Chrome extension that allows you to highlight blocks of texts in the Notion.so app.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Repo for Notion",
  "version": "1.3.10",
  "description": "Repo for Notion is a Chrome extension that allows you to highlight blocks of texts in the Notion.so app.",
  "short_name": "Repo for Notion",
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "webNavigation"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.notion.so/*",
      "*://app.repo.lu/*"
    ]
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.notion.so/*",
        "*://app.repo.lu/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": false
    }
  ],
  "action": {
    "default_title": "Repo for Notion",
    "default_icon": {
      "16": "icons/16x16.png",
      "32": "icons/32x32.png",
      "48": "icons/48x48.png",
      "128": "icons/128x128.png"
    }
  }
}