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"
}