URL carousel

URL carousel

Gets information from Google.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "URL carousel",
  "version": "1.3",
  "manifest_version": 2,
  "description": "Gets information from Google.",
  "icons": {
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_icon": {
      "32": "images/icon32.png",
      "48": "images/icon48.png"
    },
    "default_title": "URL carousel",
    "default_popup": "PopupView.html"
  },
  "options_ui": {
    "page": "OptionsView.html",
    "chrome_style": false
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}