leaf browser

leaf browser

Leaf web browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "leaf browser",
  "manifest_version": 2,
  "version": "0.3",
  "description": "Leaf web browser",
  "permissions": [
    "activeTab",
    "storage",
    "http://*/",
    "https://*/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "16": "icon16-off.png",
      "64": "icon64-off.png",
      "128": "icon128-off.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_end",
      "css": [
        "style.css"
      ],
      "js": [
        "leaf.js"
      ]
    }
  ]
}