Tab Timeout
This extension allows the user to set a timeout for the current tab to close
Tab Timeoutคืออะไร?
Tab Timeout เป็นส่วนขยายของ Chrome ที่พัฒนาโดย brentengust และคุณลักษณะหลักของมันคือ "This extension allows the user to set a timeout for the current tab to close"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Timeout
ดาวน์โหลดไฟล์ส่วนขยาย Tab Timeout ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | ipfhphdnknhbgmndmfhefbcdcopplijj |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tab-timeout/ipfhphdnknhbgmndmfhefbcdcopplijj |
| คำอธิบาย | This extension allows the user to set a timeout for the current tab to close |
| ขนาดไฟล์ | 286 KB |
| จำนวนการติดตั้ง | 51 |
| เวอร์ชันปัจจุบัน | 1.0 |
| อัปเดตครั้งล่าสุด | 2018-04-07 |
| วันที่เผยแพร่ | 2018-04-07 |
| ผู้พัฒนา | brentengust |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tab Timeout",
"description": "This extension allows the user to set a timeout for the current tab to close",
"version": "1.0",
"browser_action": {
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"alarms"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
}
} | |