Play Stupid Politics

Play Stupid Politics

Enable users to aggregate news from their political perspective by voting on the truthfulness/political bias of an article/website.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Play Stupid Politics",
  "description": "Enable users to aggregate news from their political perspective by voting on the truthfulness/political bias of an article/website.",
  "version": "1.0.2",
  "icons": {
    "16": "icons/bicon16.png",
    "48": "icons/bicon48.png",
    "128": "icons/bicon128.png"
  },
  "browser_action": {
    "default_popup": "popup/extension.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery_min.js",
        "PSP_content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery_min.js",
      "PSP_bg_worker.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "icons/*"
  ]
}