Tab Pinner (Keyboard Shortcuts)

Pin or Unpin a tab easily from the keyboard.

Tab Pinner (Keyboard Shortcuts)คืออะไร?

Tab Pinner (Keyboard Shortcuts) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Brandon Buck และคุณลักษณะหลักของมันคือ "Pin or Unpin a tab easily from the keyboard."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Pinner (Keyboard Shortcuts)

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

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

                        It's annoying to have to right click a tab and choose "Pin Tab," and slows down your browsing workflow. This extension seeks to solve that by adding in a simple key binding for doing just that: Pinning and Unpinning tabs while browsing.

The default key binding is Ctrl + Shift + X (or Command + Shift + X on Mac OS X).

This extension requires no special permissions and doesn't inject anything into a page, the key binding is configurable from your extensions page so you can bind this to whatever you feel comfortable typing regularly.

To edit keybindings click the menu icon in the top left to open the sidebar and select "Keyboard Shortcuts." Or, you can navigate to chrome://extensions/shortcuts with your address bar.

Once you've got it set up the way you want to get to pinning those tabs quickly and easily!

---

November 27, 2017 Note

I've uploaded the source for this extension (extremely small) to Github. If you're interested to see what it takes to make this thing tick check out the "tab_pinner.js" file, if you want to make changes just make a PR with your proposed update. Enjoy!

https://github.com/bbuck/tab-pinner

---

April 30, 2015 Update!

Due to another comment (I guess another will come shortly after I post this update) there is yet another new command now that allows you to PIN all tabs at once (in the current window). Now you can pin/unpin your current tab and Pin/Unpin all tabs of the current window! Hooray!

I don't think I'll be willing to add anything more to keep things quite simple; however, if more suggestions do come in and they're not very complex or fit will with what is already done then I will most likely implement them when I can.

---

April 24, 2015 Update!

Due to comment request (even though it was just one, but I try and take care of you guys) I've added another keyboard shortcut for unpinning all pinned times at once. No other functionality was changed so feel free to use or ignore the new feature!                    

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

ชื่อ Tab Pinner (Keyboard Shortcuts) Tab Pinner (Keyboard Shortcuts)
ID mbcjcnomlakhkechnbhmfjhnnllpbmlh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tab-pinner-keyboard-short/mbcjcnomlakhkechnbhmfjhnnllpbmlh
คำอธิบาย Pin or Unpin a tab easily from the keyboard.
ขนาดไฟล์ 12.53 KB
จำนวนการติดตั้ง 14,066
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2023-11-20
วันที่เผยแพร่ 2018-04-27
คะแนน 4.78/5 รวมทั้งหมด 120 คะแนน
ผู้พัฒนา Brandon Buck
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Pinner (Keyboard Shortcuts)",
    "description": "Pin or Unpin a tab easily from the keyboard.",
    "version": "1.2",
    "icons": {
        "16": "pin_16.png",
        "48": "pin_48.png",
        "128": "pin_128.png"
    },
    "permissions": [],
    "commands": {
        "tab_pinner_pin_unpin_tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            },
            "description": "Pin or unpin the current tab."
        },
        "tab_pinner_unpin_all_tabs": {
            "suggested_key": {
                "default": "Alt+Shift+X"
            },
            "description": "Unpin all pinned tabs in the current window."
        },
        "tab_pinner_pin_all_tabs": {
            "description": "Pin all tabs in the current window."
        }
    },
    "background": {
        "scripts": [
            "tab_pinner.js"
        ],
        "persistent": false
    }
}