Custom Browsing History

This allows you to keep a history of only your favorite sites.

Custom Browsing History क्या है?

Custom Browsing History umechanhika द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This allows you to keep a history of only your favorite sites."।

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

screenshot
screenshot

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

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

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

                        ### Features
 The browsing history of the websites you often visit is created by omakase (that is, fully automatically).  Saves you the trouble of looking for sites you've seen before.  Of course, you can also customize it freely.
 Once installed, click the icon from the toolbar.

### What is CustomBrowsingHistory?
 Sites that don't have "browsing history" or "recently viewed pages" are very inconvenient when searching for previously viewed pages, aren't they?
 CustomBrowsingHistory is a Chrome extension that solves such inconvenience and creates a browsing history of the set site so that it can be accessed instantly.
 Please try installing it first.

### Keyboard shortcuts are also available.
- Show Extensions: command+h
- Move left menu: command+↑↓
- Move right menu: ↑↓
- Open history: Enter/Return

### P.S.
 If you like this extension, I hope you will write a review on the web store when you feel like it.                    

एक्सटेंशन की मूल जानकारी

नाम Custom Browsing History Custom Browsing History
ID dklbojjfbmaonbdcgiabhfdindoppbko
आधिकारिक URL https://chromewebstore.google.com/detail/custom-browsing-history/dklbojjfbmaonbdcgiabhfdindoppbko
विवरण This allows you to keep a history of only your favorite sites.
फ़ाइल का आकार 16.3 KB
स्थापना संख्या 95
वर्तमान संस्करण 2.0.2
अंतिम अपडेट 2023-06-27
प्रकाशन तिथि 2020-12-30
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर umechanhika
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://umechanhika.notion.site/CustomBrowsingHistory-1cceb6b3919849fe812df39e7ad8520c
समर्थित भाषाएँ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Custom Browsing History",
    "version": "2.0.2",
    "description": "This allows you to keep a history of only your favorite sites.",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "history"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Custom Browsing History",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "128": "img\/icon128.png"
    },
    "default_locale": "en",
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+H"
            }
        }
    }
}