FLOW

FLOW

This extension makes the webpage breathe

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "options_page": "options.html",
  "name": "FLOW",
  "short_name": "flow",
  "description": "This extension makes the webpage breathe",
  "version": "0.0.0.6",
  "version_name": "beta",
  "offline_enabled": true,
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "jquery.js",
        "jq.js",
        "flow.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_behaviour": [
      "jq.js, flow.js"
    ]
  },
  "background": {
    "scripts": [
      "flow.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "https://ajax.googleapis.com/"
  ]
}