Social Media Warning

Social Media Warning

Health warnings to fill gaps in the public's understanding of social media's negative health consequences and dangers to society

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Social Media Warning",
  "version": "1.0",
  "omnibox": {
    "keyword": "eric"
  },
  "description": "Health warnings to fill gaps in the public's understanding of social media's negative health consequences and dangers to society",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Health warnings for social media",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/get_started16.png",
      "32": "images/get_started32.png",
      "48": "images/get_started48.png",
      "128": "images/get_started128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twitter.com/*",
        "https://*.reddit.com/*",
        "https://*.facebook.com/*",
        "https://*.instagram.com/*",
        "https://*.wsj.com/*",
        "https://*.bloomberg.com/*",
        "https://*.youtube.com/*",
        "https://*.slickdeals.net/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "images/warnBox.png"
  },
  "manifest_version": 2
}