Listen To This KGP

Listen To This KGP

A chrome extension that substitutes new pages with pictures from KGP and music shared in the public group Listen to this KGP

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Listen To This KGP",
  "description": "A chrome extension that substitutes new pages with pictures from KGP and music shared in the public group Listen to this KGP",
  "version": "0.8",
  "incognito": "split",
  "manifest_version": 2,
  "chrome_url_overrides": {
    "newtab": "newpage.html"
  },
  "icons": {
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon48.png"
  },
  "permissions": [
    "storage",
    "http://fierce-sands-92451.herokuapp.com/*",
    "http://localhost:5000/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "file:///*",
        "*://fierce-sands-92451.herokuapp.com/*",
        "http://localhost/*"
      ],
      "js": [
        "jquery-2.2.4.min.js",
        "script.js"
      ]
    }
  ]
}