Unclosed tabs

Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you.

Unclosed tabsคืออะไร?

Unclosed tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Michael Anx และคุณลักษณะหลักของมันคือ "Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Unclosed tabs

ดาวน์โหลดไฟล์ส่วนขยาย Unclosed tabs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Unclosed tabs Unclosed tabs
ID pnndppofhelodlbmmdicmbhnppanheca
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/unclosed-tabs/pnndppofhelodlbmmdicmbhnppanheca
คำอธิบาย Some pages you want to browse later?just close the browser with the pages open,this extension will save them for you.
ขนาดไฟล์ 159 KB
จำนวนการติดตั้ง 37
เวอร์ชันปัจจุบัน 0.0.4
อัปเดตครั้งล่าสุด 2017-09-25
วันที่เผยแพร่ 2017-09-25
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Michael Anx
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "0.0.4",
    "default_locale": "en",
    "description": "__MSG_extDiscrption__",
    "background": {
        "page": "background.html"
    },
    "icons": {
        "48": "icon.png",
        "128": "icon-128.png"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "__MSG_extName__"
    },
    "permissions": [
        "tabs",
        "unlimitedStorage",
        "chrome:\/\/favicon\/",
        "webNavigation",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "background"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js",
                "js\/init.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "js": [
                "js\/support\/ext.js",
                "js\/support\/support.js"
            ],
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "exclude_globs": []
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}