LocalStorage Manager
Add, edit, remove, export and import local storage and session storage data
LocalStorage Manager क्या है?
LocalStorage Manager michailchaban198812 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add, edit, remove, export and import local storage and session storage data"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में LocalStorage Manager एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Source code and bug tracker are available at https://github.com/gabrielbarros/localstorage-manager ——————————————————— Add, edit, remove, export and import local storage and session storage data. ---------------------------------------- According to Wikipedia, web storage offers two different storage areas — local storage and session storage — which differ in scope and lifetime. Data placed in local storage is per origin (the combination of protocol, hostname, and port number as defined in the same-origin policy) (the data is available to all scripts loaded from pages from the same origin that previously stored the data) and persists after the browser is closed. Session storage is per-origin-per-window-or-tab and is limited to the lifetime of the window. Session storage is intended to allow separate instances of the same web application to run in different windows without interfering with each other, a use case that's not well supported by cookies.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | fkhoimdhngkiicbjobkinobjkoefhkap |
आधिकारिक URL | https://chrome.google.com/webstore/detail/fkhoimdhngkiicbjobkinobjkoefhkap |
विवरण | Add, edit, remove, export and import local storage and session storage data |
फ़ाइल का आकार | 44.12 KB |
स्थापना संख्या | 27,093 |
वर्तमान संस्करण | 2.6 |
अंतिम अपडेट | 2023-01-02 |
प्रकाशन तिथि | 2018-04-06 |
रेटिंग | 3.95/5 कुल 38 रेटिंग्स |
डेवलपर | michailchaban198812 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/gabrielbarros/localstorage-manager |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "LocalStorage Manager", "version": "2.6", "description": "Add, edit, remove, export and import local storage and session storage data", "icons": { "16": "img\/16x16.png", "48": "img\/48x48.png", "128": "img\/128x128.png" }, "offline_enabled": true, "action": { "default_icon": "img\/128x128.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "run_at": "document_start", "js": [ "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "*.js" ], "matches": [ "*:\/\/*\/*" ] } ], "permissions": [ "activeTab", "storage", "scripting" ] } |