pinner

adds a pin tab button so you don't have to right click to pin or unpin.

pinnerคืออะไร?

pinner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย theQxQ และคุณลักษณะหลักของมันคือ "adds a pin tab button so you don't have to right click to pin or unpin."

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

screenshot
screenshot
screenshot

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

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

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

                        This application puts a pin to the right of your address bar. Click it to pin or unpin a tab. This is useful to people who pin and unpin tabs a lot and hates the lengthy process of right clicking and finding the "pin tab" option.

You can also use the hotkey alt-p to pin/unpin a tab.

Thank you to clker.com for their images of pins:
http://www.clker.com/cliparts/4/a/9/a/119498442666107289pin_-red_nicu_buculei_01.svg.hi.png
http://www.clker.com/cliparts/3/2/0/d/1194984425806666249pin_-_blue_nicu_buculei_01.svg.hi.png

Also thanks to livibetter who created the application "keep last two tabs". I used his code as a kickstart to make this application.
(https://chrome.google.com/webstore/detail/fcnmaiiahjldikaollhjobhchdbhfhgf)

Created by theQxQ. please comment if you found any glitches or if you have some ideas you want to see in this extension.

Also note that this extensions is unlikely to be updated anymore, but they are open source, so if you really want a feature, you can go ahead and add it. it is also under the mit license, so feel free to fork the code and use it any way you want.

You might also like "close pinned tab" close a pinned tab without right clicking: https://chrome.google.com/webstore/detail/jjnlecdojfenkidbfdjejdmajggkegca                    

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

ชื่อ pinner pinner
ID nhjpoicdffokejclclfchgbhfjcmnmic
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pinner/nhjpoicdffokejclclfchgbhfjcmnmic
คำอธิบาย adds a pin tab button so you don't have to right click to pin or unpin.
ขนาดไฟล์ 28.02 KB
จำนวนการติดตั้ง 734
เวอร์ชันปัจจุบัน 0.4.1
อัปเดตครั้งล่าสุด 2014-01-07
วันที่เผยแพร่ 2014-01-07
คะแนน 4.64/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา theQxQ
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://plus.google.com/b/106552878299900880681/
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "pinner",
    "version": "0.4.1",
    "manifest_version": 2,
    "description": "adds a pin tab button so you don't have to right click to pin or unpin.",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "tabs"
    ],
    "browser_action": {
        "default_icon": "pin.png",
        "default_title": "pin tab"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+P",
                "mac": "Alt+P",
                "chromeos": "Alt+P",
                "linux": "Alt+P"
            }
        }
    }
}