Storage viewer
This extension displays desired local/session storage values in the browser window
Τι είναι το Storage viewer;
Το Storage viewer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Andrei Diaconu, και η κύρια λειτουργία του είναι "This extension displays desired local/session storage values in the browser window".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Storage viewer
Λήψη αρχείων επέκτασης Storage viewer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Storage viewer is an extension meant for web programmers whose applications store data in local storage. This applications allows you to define keys you want to track and display them in a nice and unobtrusive way over the page you are building. Does your application store JSON strings as the value of a key? No problem, as you can define the path(Object[0].Child[1].SomeProperty) to the item you want to track and then you can see the 'SomeProperty' value.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Storage viewer |
ID | ahppkfdohbfndficpkcjjlggglpnidbd |
Επίσημο URL | https://chromewebstore.google.com/detail/storage-viewer/ahppkfdohbfndficpkcjjlggglpnidbd |
Περιγραφή | This extension displays desired local/session storage values in the browser window |
Μέγεθος Αρχείου | 532 KB |
Αριθμός Εγκαταστάσεων | 285 |
Τρέχουσα Έκδοση | 1.5 |
Τελευταία Ενημέρωση | 2017-02-04 |
Ημερομηνία Δημοσίευσης | 2017-02-03 |
Αξιολόγηση | 5.00/5 Συνολικά 10 Αξιολογήσεις |
Προγραμματιστής | Andrei Diaconu |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Storage viewer", "description": "This extension displays desired local\/session storage values in the browser window", "version": "1.5", "author": "Andrei Diaconu", "browser_action": { "default_icon": "icon.png" }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "options_ui": { "chrome_style": true, "page": "options.html" }, "content_scripts": [ { "matches": [ " |