Duplicate Tab Hotkey

Adds a hotkey for duplicating the current tab.

Duplicate Tab Hotkeyคืออะไร?

Duplicate Tab Hotkey เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Elijah Verdoorn และคุณลักษณะหลักของมันคือ "Adds a hotkey for duplicating the current tab."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Duplicate Tab Hotkey

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

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

                        A simple, free, libre, open-source extension requiring no permissions that adds a hotkey to Chrome for duplicating the current tab. No tracking is used in this extension, which also requires no special permissions. Users are welcome to view the complete source code (https://github.com/elijahverdoorn/duplicate-tab-extension) in order to ensure confidence that their browsing remains private.

Right now, the hotkey is configured to be Ctrl+Shift+E on Windows and Command+Shift+E on Mac. In future versions the hotkey may become configurable.                    

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

ชื่อ Duplicate Tab Hotkey Duplicate Tab Hotkey
ID adgkgjklgiilebgjckenkknhbenpiinc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/duplicate-tab-hotkey/adgkgjklgiilebgjckenkknhbenpiinc
คำอธิบาย Adds a hotkey for duplicating the current tab.
ขนาดไฟล์ 58.09 KB
จำนวนการติดตั้ง 91
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2020-01-24
วันที่เผยแพร่ 2020-01-24
ผู้พัฒนา Elijah Verdoorn
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://elijahverdoorn.com
URL หน้าช่วยเหลือ https://elijahverdoorn.com/contact
URL หน้านโยบายความเป็นส่วนตัว https://elijahverdoorn.com/chrome-tab-duplicator-privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Duplicate Tab Hotkey",
    "version": "1.1.0",
    "description": "Adds a hotkey for duplicating the current tab.",
    "browser_action": {
        "default_popup": "about.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "duplicate-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Duplicate the current tab."
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "options_ui": {
        "page": "about.html",
        "open_in_tab": false
    },
    "manifest_version": 2
}