Form Data Copy-Paster
This extension helps to save and restore form data
什么是Form Data Copy-Paster?
Form Data Copy-Paster是由P*R*开发的Chrome扩展程序,该扩展的主要功能是“This extension helps to save and restore form data”。
扩展截图
下载Form Data Copy-Paster扩展crx文件
下载Form Data Copy-Paster扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | ijibkpajenfeeckdammdcfbjgcdmhehp |
| 官方URL | https://chrome.google.com/webstore/detail/form-data-copy-paster/ijibkpajenfeeckdammdcfbjgcdmhehp |
| 简介 | This extension helps to save and restore form data |
| 文件大小 | 347 KB |
| 安装次数 | 687 |
| 当前版本 | 0.0.0.28 |
| 更新时间 | 2015-09-01 |
| 上架时间 | 2015-09-01 |
| 评分 | 2.33/5 共3次评分 |
| 开发者 | P*R* |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Form Data Copy-Paster",
"description": "This extension helps to save and restore form data",
"version": "0.0.0.28",
"manifest_version": 2,
"icons": {
"128": "content\/images\/copy-paste-128.png"
},
"browser_action": {
"default_icon": "content\/images\/icon-19.png",
"default_popup": "App\/popup\/popup.html",
"default_title": "Save\/Restore Page Data"
},
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"contextMenus",
"storage",
"unlimitedStorage",
"tabs"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"app\/content.js"
]
}
],
"background": {
"page": "app\/background\/background.html"
},
"content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com 'unsafe-eval'; object-src 'self'"
} | |