Social Screensaver

Social Screensaver

Turn your Chrome tab into a screensaver that displays dynamic social content!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Social Screensaver",
  "description": "Turn your Chrome tab into a screensaver that displays dynamic social content!",
  "icons": {
    "128": "images/ss.png"
  },
  "version": "0.0.4",
  "permissions": [
    "*://api.instagram.com/*",
    "*//ajax.googleapis.com/*"
  ],
  "chrome_url_overrides": {
    "newtab": "/src/newtab.html"
  },
  "background": {
    "scripts": [
      "/src/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://google.com/*"
      ],
      "js": [
        "/lib/zepto.min.js",
        "/src/content.js",
        "/lib/jquery.min.js"
      ],
      "all_frames": true
    }
  ]
}