SpeakUp: Let Your Voice Be Heard

SpeakUp: Let Your Voice Be Heard

A discussion forum for every webpage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "short_name": "__MSG_extension_short_name__",
  "description": "__MSG_extension_description__",
  "version": "1.0.2",
  "default_locale": "en",
  "browser_action": {
    "default_icon": "img/icon.png"
  },
  "icons": {
    "128": "img/icon.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://speakup-extension.disqus.com; object-src 'self'",
  "web_accessible_resources": [
    "web/*"
  ],
  "background": {
    "scripts": [
      "js/utils.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "chrome_style": false
  }
}