MySearch

Convenient Google Chrome History Searcher

什么是MySearch?

MySearch是由abdallahy271开发的Chrome扩展程序,该扩展的主要功能是“Convenient Google Chrome History Searcher”。

扩展截图

screenshot

下载MySearch扩展crx文件

下载MySearch扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        MySearch provides full-text searching ability on Google Chrome History. When a user visits a site and can only remember certain phrases and words within the site, they cannot use the in-built Chrome history to search for the content because Chrome history does not provide a full-text search functionality. This application solves that problem by only storing and indexing publicly-available links, and providing users with a way to perform full-text searches on their history.                    

扩展基本信息

名称 MySearch MySearch
ID dglacdlkibfdbgmoanfhihfjbdmfajja
官方URL https://chromewebstore.google.com/detail/mysearch/dglacdlkibfdbgmoanfhihfjbdmfajja
简介 Convenient Google Chrome History Searcher
文件大小 1.03 MB
安装次数 45
当前版本 1.0
更新时间 2023-01-29
上架时间 2023-01-29
评分 5.00/5 共1次评分
开发者 abdallahy271
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://www.notion.so/MySearch-Privacy-Policy-0dbaef6bc15d498d94a7f7d46fb2a8f0
支持的语言 en-US
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": [
        ""
    ],
    "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"
    }
}