Save Tabs

Save the active tab on 1-CLICK

Save Tabsคืออะไร?

Save Tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย greatghoul และคุณลักษณะหลักของมันคือ "Save the active tab on 1-CLICK"

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

screenshot
screenshot

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

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

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

                        Chrome Extension to save active tab by 1-click.

## Normal Mode

Open the extension popup and save.

## Fast Mode

Hold Alt key and click the extension icon to save active tab without open the extension popup.

-----

The extension is open source

https://github.com/greatghoul/save-tabs/                    

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

ชื่อ Save Tabs Save Tabs
ID lmiaenpbgbbkgmknifplkfiaphkmjmen
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/save-tabs/lmiaenpbgbbkgmknifplkfiaphkmjmen
คำอธิบาย Save the active tab on 1-CLICK
ขนาดไฟล์ 45.47 KB
จำนวนการติดตั้ง 31
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2019-08-30
วันที่เผยแพร่ 2019-08-26
คะแนน 4.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา greatghoul
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/greatghoul/save-tabs
URL หน้าช่วยเหลือ https://github.com/greatghoul/save-tabs/issues
ภาษาที่รองรับ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.0.0",
    "default_locale": "en",
    "icons": {
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "__MSG_appTooltip__"
    },
    "background": {
        "scripts": [
            "event.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "page.js"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs"
    ]
}