Tab freezer: tab suspender for faster device
Tab Freezer will hibernate tabs that have not been used in the last 5 minutes, reducing memory and battery use from your browser!
Tab freezer: tab suspender for faster device क्या है?
Tab freezer: tab suspender for faster device https://digit.st द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tab Freezer will hibernate tabs that have not been used in the last 5 minutes, reducing memory and battery use from your browser!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tab freezer: tab suspender for faster device एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Save resources, freeze unused tabs! Automatically suspend inactive tabs to save up to 90% of your computer's memory and keep it running fast! Tab Freezer will hibernate tabs that have not been used in the last 5 minutes, reducing memory and battery use from your browser, preventing overheating and keeping your device running fast and cool 😉 When you have many open tabs at the same time, your browser needs to keep their data in memory and background scripts are always running. Using Tab Freezer you’ll suspend this tabs so they don’t waste memory, battery or any kind of resources at all. Is your computer slow and constantly crashing? Avoid all that and increase your productivity working from a faster and more efficient device. With this extension you’ll be able to reopen suspended tabs with just one click, so you just let them freeze and whenever you need them *click* and you got all your work back without any waste during the process. It takes an easy and quick install and it will start freezing every new tab opened after the download ;)
एक्सटेंशन की मूल जानकारी
नाम | Tab freezer: tab suspender for faster device |
ID | diikknkcdngdedlicmnlfkoedlodolon |
आधिकारिक URL | https://chromewebstore.google.com/detail/tab-freezer-tab-suspender/diikknkcdngdedlicmnlfkoedlodolon |
विवरण | Tab Freezer will hibernate tabs that have not been used in the last 5 minutes, reducing memory and battery use from your browser! |
फ़ाइल का आकार | 403 KB |
स्थापना संख्या | 212 |
वर्तमान संस्करण | 1.2 |
अंतिम अपडेट | 2021-03-08 |
प्रकाशन तिथि | 2021-02-27 |
रेटिंग | 4.00/5 कुल 5 रेटिंग्स |
डेवलपर | https://digit.st |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://digit.st/ |
सहायता पृष्ठ URL | https://digit.st/ |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab freezer: tab suspender for faster device", "version": "1.2", "manifest_version": 2, "description": "Tab Freezer will hibernate tabs that have not been used in the last 5 minutes, reducing memory and battery use from your browser!", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "exclude_globs": [ "https:\/\/meet.google.com\/*" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js", "html2canvas.min.js" ] } ], "permissions": [ "storage" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "browser_action": { "default_title": "Tab Freezer", "default_popup": "popup.html" }, "background": { "persistent": false, "scripts": [ "background.js" ] } } |