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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show the relevant pages in your browsing history while searching on Google or viewing any web page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में History Finder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}