SameTab - keep only one copy of the tab open
SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…
SameTab - keep only one copy of the tab openคืออะไร?
SameTab - keep only one copy of the tab open เป็นส่วนขยายของ Chrome ที่พัฒนาโดย valentin.alekseev และคุณลักษณะหลักของมันคือ "SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SameTab - keep only one copy of the tab open
ดาวน์โหลดไฟล์ส่วนขยาย SameTab - keep only one copy of the tab open ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it will close the duplicate freeing up some memory and tab space.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | SameTab - keep only one copy of the tab open |
ID | egndhnnhgedkbnkdfjpakgpclhbjcjfb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/sametab-keep-only-one-cop/egndhnnhgedkbnkdfjpakgpclhbjcjfb |
คำอธิบาย | SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it… |
ขนาดไฟล์ | 8.9 KB |
จำนวนการติดตั้ง | 12 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2016-02-16 |
วันที่เผยแพร่ | 2016-02-16 |
คะแนน | 3.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | valentin.alekseev |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/valentinalexeev/chrome-sametab |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SameTab - keep only one copy of the tab open", "description": "", "version": "1.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "index.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "tabs", "activeTab", "notifications", "storage" ] } |