AutoScreenShot

AutoScreenShot

This extension captures your visible tab automaticaly when the tab has changed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "browser_action": {
    "default_icon": "images/icon-128.png",
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "background": {
    "scripts": [
      "components/jquery/jquery.js",
      "scripts/background.js"
    ]
  },
  "minimum_chrome_version": "28",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "tabCapture",
    "downloads",
    "http://*/*",
    "https://*/*"
  ]
}