Notion Slide Shows

Notion Slide Shows

Create Slide Show Presentations in Notion!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Notion Slide Shows",
  "description": "Create Slide Show Presentations in Notion!",
  "version": "0.0.1",
  "icons": {
    "16": "notionplaylogo16.png",
    "48": "notionplaylogo48.png",
    "128": "notionplaylogo128.png"
  },
  "browser_action": {
    "default_icon": "notionplaylogo48.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "notion.so/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}