Motion - Material Design Animations

Motion - Material Design Animations

Adds Material Design inspired animations when switching or closing tabs and on the New Tab page. [Alpha version]

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.7",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "topSites",
    "storage",
    "idle"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.2.0.min.js",
        "scripts/m_anim_containers.js"
      ],
      "css": [
        "ripple_animations.css"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "Motion",
    "default_popup": "popup.html"
  },
  "offline_enabled": true,
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}