Quick History

Quick History

This Chrome extension allows users to view the history of the current active tab in their browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Quick History",
  "version": "0.1.2",
  "description": "This Chrome extension allows users to view the history of the current active tab in their browser.",
  "permissions": [
    "storage",
    "tabs",
    "unlimitedStorage",
    "history"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/bookmark.png",
        "assets/play.png",
        "assets/delete.png",
        "assets/save.png"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "16": "assets/quick-history-16.png",
    "24": "assets/quick-history-24.png",
    "32": "assets/quick-history-32.png",
    "64": "assets/quick-history-64.png",
    "128": "assets/quick-history-64.png"
  },
  "action": {
    "default_icon": {
      "16": "assets/quick-history-16.png",
      "24": "assets/quick-history-24.png",
      "32": "assets/quick-history-32.png",
      "64": "assets/quick-history-64.png",
      "128": "assets/quick-history-64.png"
    },
    "default_title": "Quick History",
    "default_popup": "popup.html"
  },
  "manifest_version": 3
}