Reddit Extras

Reddit Extras

A boilerplate to chrome extension with webpack

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "A boilerplate to chrome extension with webpack",
  "version": "0.1",
  "name": "Reddit Extras",
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.reddit.com/*"
      ],
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "128.png"
  },
  "icons": {
    "128": "128.png"
  },
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "storage",
    "notifications",
    "*://*.reddit.com/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com https://ssl.google-analytics.com; object-src 'self'",
  "oauth2": {
    "client_id": "809763600343-lil0ldk1scn8o7p1v97ncs3jhe6vrlhs.apps.googleusercontent.com",
    "scopes": []
  }
}