FD Read History

FD Read History

Keeps count of how many articles you've ready for the day.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "FD Read History",
  "short_name": "FD Read History",
  "version": "0.4",
  "description": "Keeps count of how many articles you've ready for the day.",
  "author": {
    "name": "Willem Liu",
    "url": "https://www.willemliu.nl"
  },
  "icons": {
    "48": "48x48.png",
    "64": "64x64.png",
    "72": "72x72.png",
    "96": "96x96.png",
    "128": "128x128.png",
    "144": "144x144.png",
    "168": "168x168.png",
    "192": "192x192.png"
  },
  "browser_action": {
    "default_icon": {
      "48": "48x48.png",
      "64": "64x64.png",
      "72": "72x72.png",
      "96": "96x96.png",
      "128": "128x128.png",
      "144": "144x144.png",
      "168": "168x168.png",
      "192": "192x192.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "http://localhost:8888/",
    "https://beurs.acc.fd.nl/",
    "https://dev.fd.nl/",
    "https://acc.fd.nl/",
    "https://fd.nl/",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://localhost:8888/*",
        "https://beurs.acc.fd.nl/*",
        "https://dev.fd.nl/*",
        "https://acc.fd.nl/*",
        "https://beurs.fd.nl/*",
        "https://fd.nl/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}