Comic Owl

Comic Owl

Keeps track of reading/watch position in online series.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Comic Owl",
  "version": "1.2.1",
  "description": "Keeps track of reading/watch position in online series.",
  "icons": {
    "32": "img/Logo32.png",
    "64": "img/Logo64.png",
    "128": "img/Logo128.png"
  },
  "author": "Thomas Richards",
  "browser_action": {
    "default_icon": "img/Logo32.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/classes/Link.js",
        "js/background.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ]
}