Pinned Tabs
Keep Pinned Tabs When Open New Window
Pinned Tabsคืออะไร?
Pinned Tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย wnaklulu และคุณลักษณะหลักของมันคือ "Keep Pinned Tabs When Open New Window"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pinned Tabs
ดาวน์โหลดไฟล์ส่วนขยาย Pinned Tabs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The closed window is pinned the next time the label is reopened, and the new window automatically synchronizes pinned labels 1. Need to fix the tag right pinned tag 2. Open the extension input name to save the pinned label 3. Select enable next time will automatically open enabled tag group 4. [github](https://github.com/0851/pinned) 5. [demo](https://raw.githubusercontent.com/0851/pinned/master/images/use.mp4)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Pinned Tabs |
ID | biccgodmohjplafdhicdhkdeeejcmgia |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/pinned-tabs/biccgodmohjplafdhicdhkdeeejcmgia |
คำอธิบาย | Keep Pinned Tabs When Open New Window |
ขนาดไฟล์ | 41.32 KB |
จำนวนการติดตั้ง | 24 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2019-01-21 |
วันที่เผยแพร่ | 2019-01-20 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | wnaklulu |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/0851/pinned |
URL หน้าช่วยเหลือ | https://github.com/0851/pinned/issues |
ภาษาที่รองรับ | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_ext_name__", "short_name": "__MSG_ext_name_sort__", "version": "1.0.0", "description": "__MSG_ext_description__", "default_locale": "en", "icons": { "16": "images\/icon32.png", "48": "images\/icon64.png", "128": "images\/icon128.png" }, "permissions": [ "tabs", "storage" ], "browser_action": { "default_icon": { "16": "images\/icon32.png", "48": "images\/icon64.png", "128": "images\/icon128.png" }, "default_popup": "popup.html", "default_title": "__MSG_ext_name__" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "background": { "scripts": [ "common.js", "background.js" ], "persistent": false } } |