Tab Limiter And Restorer

Limit the number of tabs opened in a browser window. Close them when you reach the limit and restore them when there is a space.

什麼是Tab Limiter And Restorer?

Tab Limiter And Restorer是由https://inzk.dev開發的Chrome擴展程式,該擴展的主要功能是“Limit the number of tabs opened in a browser window. Close them when you reach the limit and restore them when there is a space.”。

擴展截圖

screenshot

下載Tab Limiter And Restorer擴展crx文件

下載Tab Limiter And Restorer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension enables you to limit the number of tabs opened in a browser window.

It will close tabs when you reach the limit and restore them when there is a space.                    

擴展基本資訊

名稱 Tab Limiter And Restorer Tab Limiter And Restorer
ID ifhilckbhneppbcbpkimbgeahhijhdpj
官方網址 https://chromewebstore.google.com/detail/tab-limiter-and-restorer/ifhilckbhneppbcbpkimbgeahhijhdpj
簡介 Limit the number of tabs opened in a browser window. Close them when you reach the limit and restore them when there is a space.
檔案大小 63.97 KB
安裝次數 693
目前版本 1.1.0
更新時間 2022-06-02
上架時間 2020-06-17
評分 4.56/5 共 9 次評分
開發者 https://inzk.dev
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Limiter And Restorer",
    "version": "1.1.0",
    "description": "Limit the number of tabs opened in a browser window. Close them when you reach the limit and restore them when there is a space.",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "src\/utils\/utils.js",
            "src\/background\/storage.js",
            "src\/background\/on-tab-activated.js",
            "src\/background\/on-tab-event.js",
            "src\/background\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Tab Limiter And Restorer",
        "default_popup": "src\/popup\/popup.html",
        "default_icon": {
            "16": "src\/assets\/icons\/icon-16.png",
            "19": "src\/assets\/icons\/icon-19.png",
            "24": "src\/assets\/icons\/icon-24.png",
            "32": "src\/assets\/icons\/icon-32.png",
            "38": "src\/assets\/icons\/icon-38.png",
            "48": "src\/assets\/icons\/icon-48.png"
        }
    },
    "icons": {
        "16": "src\/assets\/icons\/icon-16.png",
        "19": "src\/assets\/icons\/icon-19.png",
        "24": "src\/assets\/icons\/icon-24.png",
        "32": "src\/assets\/icons\/icon-32.png",
        "38": "src\/assets\/icons\/icon-38.png",
        "48": "src\/assets\/icons\/icon-48.png",
        "128": "src\/assets\/icons\/icon-128.png"
    },
    "manifest_version": 2
}