Browser Memory Control

Reduce memory usage in Chrome by setting a free memory threshold when unused tabs are put to sleep.

Browser Memory Controlคืออะไร?

Browser Memory Control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Khoroshilov Evgeniy และคุณลักษณะหลักของมันคือ "Reduce memory usage in Chrome by setting a free memory threshold when unused tabs are put to sleep."

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

screenshot

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

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

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

                        The extension allows you to control the consumption of computer memory. If free memory is less than the selected value, the extension automatically unloads tabs from RAM. At the same time, the tabs do not close and you can always return to them. When you open such a tab, the browser will automatically load the content.

The extension does not close the tabs in which the sound is playing and the active tab. Also, the extension ignores sites from the ignore list. You can select any number of sites that you do not want to unload from memory, even if the memory is less than required. But it should be borne in mind that in critical situations, the browser will automatically unload all inactive tabs, regardless of the extension.

Unloading tabs occurs in stages. First, the tabs that the user has used for a long time are unloaded. If there is still not enough memory, the extension will continue to unload on a first-come, first-served basis.                    

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

ชื่อ Browser Memory Control Browser Memory Control
ID enonifefdgmfknjhgggaibdabjehhpen
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/browser-memory-control/enonifefdgmfknjhgggaibdabjehhpen
คำอธิบาย Reduce memory usage in Chrome by setting a free memory threshold when unused tabs are put to sleep.
ขนาดไฟล์ 76.29 KB
จำนวนการติดตั้ง 391
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2022-02-11
วันที่เผยแพร่ 2022-02-08
ผู้พัฒนา Khoroshilov Evgeniy
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "ru",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.0",
    "icons": {
        "128": "images\/icon.png",
        "16": "images\/icon.png",
        "18": "images\/icon.png",
        "19": "images\/icon.png",
        "256": "images\/icon.png",
        "32": "images\/icon.png",
        "36": "images\/icon.png",
        "38": "images\/icon.png",
        "48": "images\/icon.png",
        "64": "images\/icon.png"
    },
    "background": {
        "service_worker": "js\/background.js",
        "module": true
    },
    "action": {
        "default_icon": {
            "16": "images\/icon.png"
        },
        "default_popup": "html\/popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/helpers.js",
                "js\/content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "alarms",
        "system.memory",
        "contextMenus",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}