Quick History
This Chrome extension allows users to view the history of the current active tab in their browser.
Quick History क्या है?
Quick History probukdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This Chrome extension allows users to view the history of the current active tab in their browser."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Quick History एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Privacy is considered as the most important feature. Browsing data is stored in the browser itself and there are no network calls present. The browser history data is not synched anywhere else. Deleting the extension will delete all data stored by the extension on your browser. Quick History requests the minimum permissions required to operate the extension.
एक्सटेंशन की मूल जानकारी
नाम | Quick History |
ID | dnngcfoognibnkkngfcamgaibjjlkfdn |
आधिकारिक URL | https://chromewebstore.google.com/detail/quick-history/dnngcfoognibnkkngfcamgaibjjlkfdn |
विवरण | This Chrome extension allows users to view the history of the current active tab in their browser. |
फ़ाइल का आकार | 258 KB |
स्थापना संख्या | 58 |
वर्तमान संस्करण | 0.1.2 |
अंतिम अपडेट | 2023-01-23 |
प्रकाशन तिथि | 2023-01-17 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | probukdev |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://quick-history.web.app |
सहायता पृष्ठ URL | https://quick-history.web.app |
गोपनीयता नीति पृष्ठ URL | https://quick-history.web.app/privacy-policy.html |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Quick History", "version": "0.1.2", "description": "This Chrome extension allows users to view the history of the current active tab in their browser.", "permissions": [ "storage", "tabs", "unlimitedStorage", "history" ], "host_permissions": [ "https:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/bookmark.png", "assets\/play.png", "assets\/delete.png", "assets\/save.png" ], "matches": [ "https:\/\/*\/*" ] } ], "icons": { "16": "assets\/quick-history-16.png", "24": "assets\/quick-history-24.png", "32": "assets\/quick-history-32.png", "64": "assets\/quick-history-64.png", "128": "assets\/quick-history-64.png" }, "action": { "default_icon": { "16": "assets\/quick-history-16.png", "24": "assets\/quick-history-24.png", "32": "assets\/quick-history-32.png", "64": "assets\/quick-history-64.png", "128": "assets\/quick-history-64.png" }, "default_title": "Quick History", "default_popup": "popup.html" }, "manifest_version": 3 } |