Universal Suspender

New Automatically suspends unused tabs to free up system resources

ما هو Universal Suspender؟

Universal Suspender هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "New Automatically suspends unused tabs to free up system resources".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Universal Suspender

قم بتنزيل ملفات الامتداد Universal Suspender بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Unload, park, suspend tabs to reduce memory footprint of chrome. 
Tabs can auto-suspend after a configurable period of time or be suspended manually. Tabs can be whitelisted to avoid automatic suspension. Suspended tabs are retained after closing and reopening browser, preventing many tabs from all reloading after a restart. Very simple, intuitive interface.

Universal Suspender is a lightweight chrome extension to help reduce chrome's memory footprint for users that like to have too many tabs open at the same time. This extension will automagically unload each tab while retaining its favicon and title text. A tab can be restored by clicking anywhere on the page when it is needed. This reduces the number of dom elements on the page and ensures no memory leaks or excessive javascripts are running.                    

معلومات أساسية عن التمديد

الاسم Universal Suspender Universal Suspender
ID ebdmhepnpdnaffhmehnjcangmnknmddn
عنوان URL الرسمي https://chromewebstore.google.com/detail/universal-suspender/ebdmhepnpdnaffhmehnjcangmnknmddn
الوصف New Automatically suspends unused tabs to free up system resources
حجم الملف 351 KB
عدد التثبيتات 577
النسخة الحالية 1.1.1
آخر تحديث 2021-12-17
تاريخ النشر 2017-07-01
تقييم 4.40/5 مجموع تقييمات 5
المطور Unknown
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Universal Suspender",
    "description": "New Automatically suspends unused tabs to free up system resources",
    "version": "1.1.1",
    "permissions": [
        "tabs",
        "storage",
        "history",
        "unlimitedStorage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "chrome:\/\/favicon\/*",
        "https:\/\/greatsuspender.github.io\/",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/db.js",
            "js\/gsUtils.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentscript.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "The Great Suspender",
        "default_icon": "img\/icon19.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "web_accessible_resources": [
        "suspended.html",
        "history.html",
        "clean.html",
        "css\/style.css",
        "css\/suspended.css"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "incognito": "split",
    "manifest_version": 2,
    "minimum_chrome_version": "24",
    "commands": {
        "1-suspend-tab": {
            "description": "Suspend active tab",
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            }
        },
        "2-unsuspend-tab": {
            "description": "Unsuspend active tab",
            "suggested_key": {
                "default": "Ctrl+Shift+U"
            }
        },
        "3-suspend-active-window": {
            "description": "Suspend all tabs in active window"
        },
        "4-unsuspend-active-window": {
            "description": "Unsuspend all tabs in active window"
        },
        "5-suspend-all-windows": {
            "description": "Suspend all tabs in all windows"
        },
        "6-unsuspend-all-windows": {
            "description": "Unsuspend all tabs in all windows"
        }
    }
}