Save Page State
Chrome extension to save a state of a page for remote analysis
Что такое Save Page State?
Save Page State - это расширение Chrome, разработанное Wing Leung, и его основная функция - "Chrome extension to save a state of a page for remote analysis".
Снимки экрана расширения
Скачать файл CRX расширения Save Page State
Скачайте файлы расширений Save Page State в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A chrome extension to save the state of a page for further analysis.
Основная информация о расширении
Название | Save Page State |
ID | aokllhajmkihfihciggkmpgdhgecgaic |
Официальный URL | https://chromewebstore.google.com/detail/save-page-state/aokllhajmkihfihciggkmpgdhgecgaic |
Описание | Chrome extension to save a state of a page for remote analysis |
Размер файла | 52.27 KB |
Количество установок | 241 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2018-12-17 |
Дата публикации | 2018-12-12 |
Рейтинг | 1.00/5 Всего 2 оценок |
Разработчик | Wing Leung |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/vrtdev/save-page-state |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Save Page State", "version": "1.0.1", "description": "Chrome extension to save a state of a page for remote analysis", "manifest_version": 2, "icons": { "128": "images\/icon.png" }, "browser_action": { "default_icon": "images\/icon.png" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/content.js" ] } ], "permissions": [ "activeTab", "pageCapture", "*:\/\/*\/*" ] } |