Sloth
Automatically discards all tabs at startup, before they load, reducing memory footprint and unnecessary bandwidth usage.
Sloth क्या है?
Sloth HRJ द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically discards all tabs at startup, before they load, reducing memory footprint and unnecessary bandwidth usage."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Sloth एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
An open-source and light-weight chrome / chromium extension which ensures that tabs are lazily loaded. Source code: https://github.com/hrj/sloth Requires Chrome 54+. ## How it works This plugin uses the discard API available since Chrome 54. All tabs except new tabs or "special" tabs are discarded. Discarded tabs are visible in the tab bar, but not loaded from the network nor kept in memory. If a window doesn't have a new tab, it is created and activated. This prevents any tab from loading during startup, unless you explicitly select it. Special tabs are those with chrome:// URLs, for example. Note: Where there are hundreds of tabs open in the session, a couple of them sneak through and become active. This limitation is due to the design of the browser. See https://github.com/hrj/sloth/issues/1. ## History / Credits I found an extension called Native Lazy Tabs here. It was distributed under the GPL license. I adapted it and added the "new tab" feature. The icon is by Jaime Serra, distributed under the CC license.
एक्सटेंशन की मूल जानकारी
नाम | Sloth |
ID | filkeckmpdjogddcamkafnekhgfaehkc |
आधिकारिक URL | https://chromewebstore.google.com/detail/sloth/filkeckmpdjogddcamkafnekhgfaehkc |
विवरण | Automatically discards all tabs at startup, before they load, reducing memory footprint and unnecessary bandwidth usage. |
फ़ाइल का आकार | 25.24 KB |
स्थापना संख्या | 2,377 |
वर्तमान संस्करण | 0.5 |
अंतिम अपडेट | 2019-08-27 |
प्रकाशन तिथि | 2019-08-27 |
रेटिंग | 4.33/5 कुल 24 रेटिंग्स |
डेवलपर | HRJ |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/hrj/sloth/ |
सहायता पृष्ठ URL | https://github.com/hrj/sloth/issues |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sloth", "short_name": "Sloth", "description": "Automatically discards all tabs at startup, before they load, reducing memory footprint and unnecessary bandwidth usage.", "version": "0.5", "permissions": [ "tabs" ], "background": { "scripts": [ "js\/eventPage.js" ], "persistent": false }, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" } }, "incognito": "not_allowed", "manifest_version": 2, "minimum_chrome_version": "54", "options_ui": { "page": "html\/options.html", "chrome_style": true } } |