History Finder

Show the relevant pages in your browsing history while searching on Google or viewing any web page.

History Finderとは何ですか?

History Finderはhttps://peterchen.vcによって開発されたChromeの拡張機能で、その主な機能は「Show the relevant pages in your browsing history while searching on Google or viewing any web page.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

History Finder拡張機能のCRXファイルをダウンロード

History Finder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        History Finder

This extension will show the relevant browsing history while searching on Google or viewing any webpage. It uses an intelligent algorithm to search your browsing history and can help you to find the important web page you visited before.

It also supports a customized list of web site or file type blacklist.

Disclaimer: No browsing history is collected or stored remotely. All the history data is queried from Chrome History API hence is only stored and available to your local machine.


Update History:

v0.6 Fix null error for Google search page


About Chromeism.com

We are interested in everything about Chrome and Chromebook!                    

拡張機能の基本情報

名前 History Finder History Finder
ID eailembbokjdoehchhlpbhnjlkecgack
公式URL https://chromewebstore.google.com/detail/history-finder/eailembbokjdoehchhlpbhnjlkecgack
説明 Show the relevant pages in your browsing history while searching on Google or viewing any web page.
ファイルサイズ 1.14 MB
インストール数 455
現在のバージョン 0.6
最終更新日 2018-05-22
公開日 2018-05-21
評価 4.40/5 合計 10 レビュー
開発者 https://peterchen.vc
支払い方法 free
拡張機能のウェブサイト http://peterchen.vc/history-finder/
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "History Finder",
    "short_name": "History Finder",
    "version": "0.6",
    "author": "[email protected]",
    "description": "Show the relevant pages in your browsing history while searching on Google or viewing any web page.",
    "permissions": [
        "history",
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "icon\/icon_16.png",
        "32": "icon\/icon_32.png",
        "48": "icon\/icon_48.png",
        "128": "icon\/icon_128.png"
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": "icon\/icon_32_gray.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/tools.js",
                "js\/content.js"
            ],
            "run_at": "document_end",
            "css": [
                "css\/table.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "options.html",
        "icon\/*"
    ],
    "background": {
        "scripts": [
            "js\/wordlist.js",
            "js\/tools.js",
            "js\/background.js"
        ]
    },
    "manifest_version": 2
}