Spark Tabs
Automated tabs organization for Chrome.
Spark Tabsคืออะไร?
Spark Tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย @pashasc และคุณลักษณะหลักของมันคือ "Automated tabs organization for Chrome."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spark Tabs
ดาวน์โหลดไฟล์ส่วนขยาย Spark Tabs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Features
* Tabs are ordered according to their longest activity.
* Opening the popup will re-order the tabs in your window (left to right).
* Automatically close your least used tabs.
- After you have opened the maximum number of tabs (optional, default is 8), your least active tabs will close after idling for a set number of minutes (default is 40 minutes).
- these tabs are closed and stored in a 'dimmed' state in the dropdown.
* Whitelist urls so their tabs won't automatically close after idling (optional).
* Find tabs quickly by filtering them by keyword.
* Close and store all tabs with one click.
* Close, pin and navigate tabs with keyboard shortcuts.
Keyboard Shortcuts
* Command + Shift + Z, toggle tabs popup
* ↑ or k, navigate up one tab
* ↓ or j, navigate down one tab
* p, pin tab
* c, close tab and throw out from list
* esc, clear filter text
-v 0.0.53 Added a percentage bar
-v 0.0.54 Fix issue with favicons not always showing up
Discovered a bug? Report it here, https://github.com/pashasc/spark_tabs/issues
Got feedback or ideas for improvement? Find me on Twitter, https://twitter.com/pashasc ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | mcbakkceggomfmikgcmcncoobaclkbam |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/spark-tabs/mcbakkceggomfmikgcmcncoobaclkbam |
| คำอธิบาย | Automated tabs organization for Chrome. |
| ขนาดไฟล์ | 769 KB |
| จำนวนการติดตั้ง | 22 |
| เวอร์ชันปัจจุบัน | 0.0.56 |
| อัปเดตครั้งล่าสุด | 2016-09-11 |
| วันที่เผยแพร่ | 2016-09-11 |
| ผู้พัฒนา | @pashasc |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Spark Tabs",
"description": "Automated tabs organization for Chrome.",
"version": "0.0.56",
"author": "@pashasc",
"options_page": "options.html",
"web_accessible_resources": [
"assets\/*.png"
],
"icons": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"browser_action": {
"default_title": "Spark tabs plugin",
"default_icon": "assets\/icon.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"common.js",
"eventPage.js"
],
"persistent": true
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+Z",
"mac": "Command+Shift+Z",
"chromeos": "Ctrl+Shift+Z",
"linux": "Ctrl+Shift+Z"
}
}
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": [
"activeTab",
"storage",
"background",
"tabs",
"idle"
]
} | |