Private browse beta

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

Τι είναι το Private browse beta;

Το Private browse beta είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://dev-sandeep.github.io/portfolio, και η κύρια λειτουργία του είναι "An extension to support private browsing with selective incognito mode and restricting a website to appear in history".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Private browse beta

Λήψη αρχείων επέκτασης Private browse beta σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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]                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Private browse beta Private browse beta
ID bjamihladdffbeodjgdcbdkjiccoenkn
Επίσημο URL https://chromewebstore.google.com/detail/private-browse-beta/bjamihladdffbeodjgdcbdkjiccoenkn
Περιγραφή An extension to support private browsing with selective incognito mode and restricting a website to appear in history
Μέγεθος Αρχείου 20.6 KB
Αριθμός Εγκαταστάσεων 76
Τρέχουσα Έκδοση 1.3
Τελευταία Ενημέρωση 2020-05-06
Ημερομηνία Δημοσίευσης 2020-05-06
Προγραμματιστής https://dev-sandeep.github.io/portfolio
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://www.sandeepg.co.in
Υποστηριζόμενες Γλώσσες 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"
}