MySearch

MySearch

Convenient Google Chrome History Searcher

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "MySearch",
  "name": "MySearch",
  "description": "Convenient Google Chrome History Searcher",
  "version": "1.0",
  "manifest_version": 3,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlFt7vQIUfeRmk7syto8N/X+iGMwAOzEEZNIJw0nvhW3mJDFNKU1yNnRHDWi94vxGe6RUVpsyucX/DgrcU2SKzeassVBf61laOUm5P8s0pfcoaM1IbXrkFCuGA63YAXz+A3AjYzyPzaGnBHleS+QWkNyA8DhZTitTxXyiIlpQS1NDCRnAsIXM0IZAwhew7YPfoiiwVPhMwaL/M40mUvHtM+7/konbJ6ElVtqUxlBLOUzHri0RG8cX3+nWpkGqYXWXycLp55ihXs+6y3r5X33MhhqeD8x5Hix5xsaWhpyshbUOPNEkrOlsq7NJLmI29UGSRUYSf0tkmuiUOyEn2zQaLwIDAQAB",
  "background": {
    "service_worker": "./static/js/content.js"
  },
  "icons": {
    "16": "mysearch-icon.png",
    "48": "mysearch-icon.png",
    "128": "mysearch-icon.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self'"
  },
  "permissions": [
    "identity",
    "history",
    "storage"
  ],
  "host_permissions": [
    "*://*.google.com/*",
    "https://mychromehistory.world/"
  ],
  "optional_permissions": [
    "<all_urls>"
  ],
  "oauth2": {
    "client_id": "1055552337084-qfefrd3i2u24qm9t7lf8q8fvm6otubif.apps.googleusercontent.com",
    "scopes": [
      "openid",
      "email",
      "profile"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./static/js/content.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "index.html",
    "default_title": "Search your history"
  }
}