Once a day

Once a day

Most websites you only really need to visit Once A Day

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Once a day",
  "version": "1.4",
  "description": "Most websites you only really need to visit Once A Day",
  "icons": {
    "48": "icons/logo.png",
    "96": "icons/[email protected]"
  },
  "background": {
    "scripts": [
      "/dist/node_moduleswebextension-polyfilldistbrowser-polyfill.min.js",
      "/dist/[email protected]",
      "/dist/node_modulesmomentminmoment.min.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "/dist/node_moduleswebextension-polyfilldistbrowser-polyfill.min.js",
        "/dist/[email protected]",
        "once-a-day.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icons/logo.png",
    "default_title": "Once a day"
  },
  "options_ui": {
    "page": "/dist/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "history",
    "storage"
  ],
  "web_accessible_resources": [
    "/static/bg-min.png",
    "/dist/landing.html"
  ]
}