History Limiter Custom
Limits the number of items the browser will keep in history by days.
History Limiter Custom क्या है?
History Limiter Custom https://blandlifedev.blogspot.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Limits the number of items the browser will keep in history by days."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में History Limiter Custom एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A personal edit of nschneirov's History Limiter put up to share. Overall the logic remain unchanged from the original version. Main changes: - code reworks to eliminate need for jQuery and to facilitate manifest ver 2 - event page enabled - no changes to logic, no new functions The main aim of this edit is to make it event page enabled so it unloads when not needed thus saving memory. ================= CHANGELOG: 1.2 [21/04/2018] - back to using a set button to overcome the premature clear - some minor UI changes 1.1.1 [10/05/2014] - history will be trimmed right after the day value is edited 1.1 [27/04/2014] - tidying and restructuring of code - changed options page to auto save - added textfield number check - added working 0 days mode (no history)
एक्सटेंशन की मूल जानकारी
नाम | History Limiter Custom |
ID | ibpfkplbhnbiklpjacjbaelahebmbmpp |
आधिकारिक URL | https://chromewebstore.google.com/detail/history-limiter-custom/ibpfkplbhnbiklpjacjbaelahebmbmpp |
विवरण | Limits the number of items the browser will keep in history by days. |
फ़ाइल का आकार | 9.56 KB |
स्थापना संख्या | 6,707 |
वर्तमान संस्करण | 1.2 |
अंतिम अपडेट | 2021-04-01 |
प्रकाशन तिथि | 2018-04-20 |
रेटिंग | 4.05/5 कुल 37 रेटिंग्स |
डेवलपर | https://blandlifedev.blogspot.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://blandlifedev.blogspot.com/ |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "History Limiter Custom", "version": "1.2", "manifest_version": 2, "description": "Limits the number of items the browser will keep in history by days.", "icons": { "48": "icon.png" }, "background": { "scripts": [ "bg.js", "common.js" ], "persistent": false }, "options_page": "options.html", "permissions": [ "history" ] } |