The Great-er Discarder-er
Helps Chrome run faster by freeing up memory and system resources being used by inactive tabs or old tabs
The Great-er Discarder-er क्या है?
The Great-er Discarder-er github.com/rkodey द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helps Chrome run faster by freeing up memory and system resources being used by inactive tabs or old tabs"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में The Great-er Discarder-er एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
New Features Discard all tabs at startup Prevents Chrome from loading all your tabs at startup, while preserving the tabs in your last session. Discard eligible tabs Same as "Discard other tabs" but observes the current auto-discard settings, like skipping Pinned and Audio tabs. Link to Chrome Discards page Adds a link on the context and popup menus to launch the built-in chrome://discards/ page. Discarding a tab does not close or remove or delete the tab. It's a feature of Chrome that simply frees up resources and memory that the tab is using. Discarding tabs should let Chrome run faster while consuming less memory. Please post all bug reports here: https://github.com/rkodey/the-great-er-discarder-er/issues (This is a fork of the abandoned project deanoemcke/thegreatdiscarder.)
एक्सटेंशन की मूल जानकारी
नाम | The Great-er Discarder-er |
ID | plpkmjcnhhnpkblimgenmdhghfgghdpp |
आधिकारिक URL | https://chromewebstore.google.com/detail/the-great-er-discarder-er/plpkmjcnhhnpkblimgenmdhghfgghdpp |
विवरण | Helps Chrome run faster by freeing up memory and system resources being used by inactive tabs or old tabs |
फ़ाइल का आकार | 210 KB |
स्थापना संख्या | 3,538 |
वर्तमान संस्करण | 0.2.1 |
अंतिम अपडेट | 2021-10-31 |
प्रकाशन तिथि | 2021-02-12 |
रेटिंग | 4.73/5 कुल 15 रेटिंग्स |
डेवलपर | github.com/rkodey |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/rkodey/the-great-er-discarder-er |
सहायता पृष्ठ URL | https://github.com/rkodey/the-great-er-discarder-er/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "The Great-er Discarder-er", "description": "Helps Chrome run faster by freeing up memory and system resources being used by inactive tabs or old tabs", "version": "0.2.1", "permissions": [ "tabs", "storage", "contextMenus", "alarms" ], "background": { "scripts": [ "js\/db.js", "js\/storage.js", "js\/tabStates.js", "js\/eventPage.js" ], "persistent": false }, "content_scripts": [], "browser_action": { "default_title": "The Great-er Discarder-er", "default_icon": "img\/icon19.png", "default_popup": "html\/popup.html" }, "options_page": "html\/options.html", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "incognito": "split", "minimum_chrome_version": "54", "commands": { "1-discard-tab": { "description": "Discard active tab", "suggested_key": { "default": "Ctrl+Shift+S" } }, "3-discard-active-window": { "description": "Discard all tabs in active window" }, "4-reload-active-window": { "description": "Reload all tabs in active window" }, "5-discard-all-windows": { "description": "Discard all tabs in all windows" }, "6-reload-all-windows": { "description": "Reload all tabs in all windows" } } } |