Learn by Osmosis

Learn by Osmosis

Learn by Osmosis while you browse your favorite websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Learn by Osmosis",
  "version": "1.2.2",
  "description": "Learn by Osmosis while you browse your favorite websites.",
  "icons": {
    "16": "icon/16.png",
    "48": "icon/48.png",
    "64": "icon/64.png",
    "128": "icon/128.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "browser_action": {
    "default_title": "Learn by Osmosis",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon/16.png",
      "48": "icon/48.png",
      "64": "icon/64.png",
      "128": "icon/128.png"
    }
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistant": false
  },
  "web_accessible_resources": [
    "images/*.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://localhost:*/*",
        "*://*.osmosis.org/*"
      ],
      "css": [
        "styles/contentscript.css"
      ],
      "js": [
        "js/jquery.min.js",
        "scripts/contentscript.js",
        "js/anime.min.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}