Advanced Project History

Advanced Project History

Better organize your Internet history and make your browsing much more efficient.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Advanced Project History",
  "description": "Better organize your Internet history and make your browsing much more efficient.",
  "version": "1.0",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "background",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "firebase.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/img/icons/icon16.png",
      "32": "/img/icons/icon32.png",
      "48": "/img/icons/icon48.png",
      "128": "/img/icons/icon128.png"
    }
  },
  "icons": {
    "16": "/img/icons/icon16.png",
    "32": "/img/icons/icon32.png",
    "48": "/img/icons/icon48.png",
    "128": "/img/icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}