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是由https://dev-sandeep.github.io/portfolio開發的Chrome擴展程式,該擴展的主要功能是“An extension to support private browsing with selective incognito mode and restricting a website to appear in history”。

擴展截圖

screenshot
screenshot
screenshot

下載Private browse beta擴展crx文件

下載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
官方網址 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"
}