Save Page State
Chrome extension to save a state of a page for remote analysis
什么是Save Page State?
Save Page State是由Wing Leung开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension to save a state of a page for remote analysis”。
扩展截图
下载Save Page State扩展crx文件
下载Save Page State扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A chrome extension to save the state of a page for further analysis. 扩展基本信息
| 名称 | |
| 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",
"*:\/\/*\/*"
]
} | |