Peeky - Chrome History Organizer

Peeky - Chrome History Organizer

Peeky organizes your web history and helps you get to what you want.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Peeky - Chrome History Organizer",
  "version": "1.2.0",
  "description": "Peeky organizes your web history and helps you get to what you want.",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgcoe6nl7GblHUaa8p2QlPBP9SYSrHZaoEEG1fT0bDswcfU/addzZaf7vVotjFb9PKAaThlI8+c8Ajpv4d6i+RHIvybCs5CLi77piCcN/RLxfok0SQX6lCO3otOtzBXTTDHPQ9l2lTtJ3pZFlx9OA50AwRTUC7w4GUrCHpy+hiMoV6fztgUrwARvBDw32IW7XDd/jwkLKpJgCcFXoC+zG9C4JByjsTV8y2rUyPBm/vM6qupeyNzXoQUOmjrEixj7mr1uLUlSBDye0BizuO1gvtoXNkA+FXTt4yQ4jdMstN2uZ4mqI5wGwepx8//dDdKvIeG/mZIkCcssOIGzp8h+b2QIDAQAB",
  "background": {
    "service_worker": "src/extension/background/index.js",
    "type": "module"
  },
  "action": {
    "default_icon": "peeky_pavicon_32.png",
    "default_title": "Peeky"
  },
  "icons": {
    "32": "peeky_pavicon_32.png",
    "128": "peeky_pavicon_128.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+E",
        "mac": "Command+E",
        "chromeos": "Ctrl+E",
        "linux": "Ctrl+E"
      }
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "src/extension/content/index.js"
      ],
      "css": [
        "assets/css/contentStyle1692925072471.chunk.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "src/extension/popup/index.html",
        "icon/peeky.svg"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "history",
    "storage",
    "tabs"
  ],
  "chrome_url_overrides": {
    "newtab": "src/extension/newtab/index.html"
  }
}