Rise Chrome Extension

Rise Chrome Extension

Share announcements, positive news, educational content, and more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Rise Chrome Extension",
  "description": "Share announcements, positive news, educational content, and more!",
  "version": "2021.02.12.7256",
  "manifest_version": 2,
  "permissions": [
    "storage"
  ],
  "content_security_policy": "script-src https://cdn.segment.com/ https://fast.wistia.com/ 'self'; object-src 'self'",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png"
    }
  },
  "icons": {
    "16": "images/icon-with-padding-16.png",
    "32": "images/icon32.png",
    "48": "images/icon-with-padding-48.png",
    "128": "images/icon-with-padding-128.png"
  },
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://storage.googleapis.com/widgets.risevision.com/creative-projects/welcome/*index.html"
      ],
      "all_frames": true,
      "js": [
        "welcome-content-script.js"
      ]
    },
    {
      "matches": [
        "*://storage.googleapis.com/widgets.risevision.com/creative-projects/welcome/*schedule-url.html"
      ],
      "all_frames": true,
      "js": [
        "popup-content-script.js"
      ]
    }
  ]
}