Tab Origin
Return to the page from which you opened this tab.
Tab Originคืออะไร?
Tab Origin เป็นส่วนขยายของ Chrome ที่พัฒนาโดย pelmers และคุณลักษณะหลักของมันคือ "Return to the page from which you opened this tab."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Origin
ดาวน์โหลดไฟล์ส่วนขยาย Tab Origin ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Shortcut to return to the page from which you opened the current tab. Motivation: you have a list of search results. You opened the first 5 in new tabs and closed the results list. Now you read the 5 top results, but they do not answer your question so you want to go back to the search page. Without this extension, you would need to search your history or spam undo close tab. This extension conveniently solves the problem by taking you straight back to the origin page, re-opening it if necessary. You can even use it recursively on tabs opened by tab origin; the extension tracks the history. I suggest the shortcut is cmd/ctrl-shift-u, set from the bottom of Extensions page. When origin information is unavailable for a tab a "N/A" badge is shown. Port of my Tab Origin add-on from Firefox.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Tab Origin |
ID | koegbhcaimimhafaocefleldecfecjhn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tab-origin/koegbhcaimimhafaocefleldecfecjhn |
คำอธิบาย | Return to the page from which you opened this tab. |
ขนาดไฟล์ | 9.33 KB |
จำนวนการติดตั้ง | 57 |
เวอร์ชันปัจจุบัน | 1.0.5 |
อัปเดตครั้งล่าสุด | 2024-01-15 |
วันที่เผยแพร่ | 2017-03-18 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | pelmers |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/pelmers/tab-origin |
URL หน้าช่วยเหลือ | https://github.com/pelmers/tab-origin/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Tab Origin", "description": "Return to the page from which you opened this tab.", "author": "Peter Elmers", "version": "1.0.5", "icons": { "48": "drawing.png", "128": "drawing128.png" }, "permissions": [ "tabs", "storage" ], "action": { "default_icon": "drawing.png" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+U" } } }, "background": { "service_worker": "background.js", "type": "module" } } |