NextTab
A tool that automatically switches to the next tab in a list
NextTabคืออะไร?
NextTab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย saqfish และคุณลักษณะหลักของมันคือ "A tool that automatically switches to the next tab in a list"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NextTab
ดาวน์โหลดไฟล์ส่วนขยาย NextTab ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
NextTab will let you select a list of open tabs and automatically switch between them on refresh. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | fnalnialandajhfaidhanakabnfbngij |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/nexttab/fnalnialandajhfaidhanakabnfbngij |
| คำอธิบาย | A tool that automatically switches to the next tab in a list |
| ขนาดไฟล์ | 1.14 MB |
| จำนวนการติดตั้ง | 18 |
| เวอร์ชันปัจจุบัน | 0.0.3 |
| อัปเดตครั้งล่าสุด | 2020-10-24 |
| วันที่เผยแพร่ | 2020-10-24 |
| ผู้พัฒนา | saqfish |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/saqfish/NextTab |
| URL หน้าช่วยเหลือ | https://github.com/saqfish/NextTab/issues |
| URL หน้านโยบายความเป็นส่วนตัว | http://saqfish.com/mtb_policy.html |
| ภาษาที่รองรับ | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "0.0.3",
"manifest_version": 2,
"name": "NextTab",
"short_name": "NextTab",
"description": "A tool that automatically switches to the next tab in a list",
"background": {
"scripts": [
"lib\/js\/browser-polyfill.js",
"background.js"
]
},
"browser_action": {
"default_icon": {
"16": "img\/icon16.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"default_title": "NextTab",
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"downloads",
"storage"
],
"icons": {
"16": "img\/icon16.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"options_ui": {
"page": ".\/options.html",
"open_in_tab": true
}
} | |