Examine Offline Data (Cookies, HTML5 Storage)
Inspect cookies and HTML5 web storage data (localStorage and sessionStorage) stored by a web page. You can easily check if a…
Что такое Examine Offline Data (Cookies, HTML5 Storage)?
Examine Offline Data (Cookies, HTML5 Storage) - это расширение Chrome, разработанное https://deceptiveweb.com, и его основная функция - "Inspect cookies and HTML5 web storage data (localStorage and sessionStorage) stored by a web page. You can easily check if a…".
Снимки экрана расширения
Скачать файл CRX расширения Examine Offline Data (Cookies, HTML5 Storage)
Скачайте файлы расширений Examine Offline Data (Cookies, HTML5 Storage) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Inspect cookies and HTML5 web storage data (localStorage and sessionStorage) stored by a web page. You can easily check if a website stores your credit card information in a cookie! The tool can also aid in debugging web pages that store offline data. If your actions on the web page cause changes to the stored data, you can invoke the extension again, to view the updated data. You can also remove cookies or web storage data by clicking the “X” icon that shows up on hovering on individual items (or section headings). A future version of the tool will automatically watch cookies and web storage data for changes as well as allow you to edit them inline.
Основная информация о расширении
Название | Examine Offline Data (Cookies, HTML5 Storage) |
ID | lgbennneeiaagpbialihidiohfkcagph |
Официальный URL | https://chromewebstore.google.com/detail/examine-offline-data-cook/lgbennneeiaagpbialihidiohfkcagph |
Описание | Inspect cookies and HTML5 web storage data (localStorage and sessionStorage) stored by a web page. You can easily check if a… |
Размер файла | 33.75 KB |
Количество установок | 926 |
Текущая Версия | 1.2.1 |
Последнее Обновление | 2012-12-12 |
Дата публикации | 2012-12-12 |
Рейтинг | 4.80/5 Всего 5 оценок |
Разработчик | https://deceptiveweb.com |
Тип оплаты | free |
Официальный сайт расширения | http://deceptiveweb.com/blog/examine-offline-data-bookmarklet/ |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Examine Offline Data (Cookies, HTML5 Storage)", "version": "1.2.1", "background": { "scripts": [ "background.js" ] }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_title": "Examine Offline Data", "default_icon": "icon48.png" }, "icons": { "128": "icon128.png", "16": "icon16.png", "19": "icon19.png", "32": "icon32.png", "48": "icon48.png" }, "manifest_version": 2, "web_accessible_resources": [ "page_script.js" ] } |