SimpleLastTab

Creates a New Tab when you are at your last tab to prevent the window from closing.

SimpleLastTabคืออะไร?

SimpleLastTab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://blandlifedev.blogspot.com และคุณลักษณะหลักของมันคือ "Creates a New Tab when you are at your last tab to prevent the window from closing."

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SimpleLastTab

ดาวน์โหลดไฟล์ส่วนขยาย SimpleLastTab ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A lightweight extension that prevents Chrome from closing when the last tab is closed.

It uses the naive and very simple method of opening a new tab when there is only one tab left.
Another way to look at it is that it try to ensure that there are at least 2 tabs.

Features event page to ensure that it unloads when not needed.
No options and nothing flashy to warrant a screenshot :P
Making this extension as simple as possible.

Decided to make this as Chrome Toolbox doesn't work anymore on recent Chrome versions.

=================
CHANGELOG:

0.95 [04/04/2021]
- remove 'tabs' permission as its not necessary 

0.94 [31/05/2014]
- set the active tab back to the first tab
- remove use of deprecated property

0.93 [22/04/2014]
- changed a deprecated api call
- hopefully fix unclosable main Chrome window if theres a Chrome app loaded as a separate window

0.92 [22/12/12]
- changed the delay method of the timer

0.91 [28/11/12]
- added a delay to the tab creation method

0.90 [26/11/12]	
- first version

=================
KNOWN BUG (probably fixed):

As the function that creates the new tab locks for about 1 second to alleviate the problem of multiple new tabs opening on operations like using 'close tabs to the right' on a large number of tabs:

- there may be times where the new tab does not show up (e.g fast closing of tab, faster than 1 second when the function is still locked) or 

- there may be times when more than one new tabs show up (e.g using 'close tabs to the right' on a large number of tabs, slower than 1 second thus triggering the function again).                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SimpleLastTab SimpleLastTab
ID ganniadnoflaogjededkdpicdfkloajf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/simplelasttab/ganniadnoflaogjededkdpicdfkloajf
คำอธิบาย Creates a New Tab when you are at your last tab to prevent the window from closing.
ขนาดไฟล์ 5.25 KB
จำนวนการติดตั้ง 1,430
เวอร์ชันปัจจุบัน 0.95
อัปเดตครั้งล่าสุด 2021-04-05
วันที่เผยแพร่ 2014-07-17
คะแนน 3.96/5 รวมทั้งหมด 28 คะแนน
ผู้พัฒนา https://blandlifedev.blogspot.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://blandlifedev.blogspot.com/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SimpleLastTab",
    "version": "0.95",
    "manifest_version": 2,
    "description": "Creates a New Tab when you are at your last tab to prevent the window from closing.",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "bg.js"
        ],
        "persistent": false
    },
    "permissions": [
        "alarms"
    ]
}