Private browse beta

An extension to support private browsing with selective incognito mode and restricting a website to appear in history

Vad är Private browse beta?

Private browse beta är en Chrome-tillägg utvecklad av https://dev-sandeep.github.io/portfolio, och dess huvudfunktion är "An extension to support private browsing with selective incognito mode and restricting a website to appear in history".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Private browse beta-förlängningens CRX-fil

Ladda ner Private browse beta-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Helps a user to put one or more website in incognito list, so that next time when you open up facebook.com or any other website then it would automatically open up in incognito.
You also have the ability to restrict chrome from logging a website in history. So that you don't have to clear a website from history everytime.


Author: Sandeep Gantait
Email: [email protected]                    

Grundläggande Information om Tillägg

Namn Private browse beta Private browse beta
ID bjamihladdffbeodjgdcbdkjiccoenkn
Officiell webbadress https://chromewebstore.google.com/detail/private-browse-beta/bjamihladdffbeodjgdcbdkjiccoenkn
Beskrivning An extension to support private browsing with selective incognito mode and restricting a website to appear in history
Filstorlek 20.6 KB
Antal Installationer 76
Aktuell Version 1.3
Senast Uppdaterad 2020-05-06
Publiceringsdatum 2020-05-06
Utvecklare https://dev-sandeep.github.io/portfolio
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://www.sandeepg.co.in
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Private browse beta",
    "version": "1.3",
    "description": "An extension to support private browsing with selective incognito mode and restricting a website to appear in history",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "declarativeContent",
        "activeTab",
        "history",
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js",
            "common.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16x16.png",
        "32": "images\/icon32x32.png",
        "48": "images\/icon48x48.png",
        "128": "images\/icon128x128.png"
    },
    "options_page": "options.html"
}