Cookies2JSON
Export cookies to a simple JSON file.
什么是Cookies2JSON?
Cookies2JSON是由sunnyclouds.apps开发的Chrome扩展程序,该扩展的主要功能是“Export cookies to a simple JSON file.”。
扩展截图
下载Cookies2JSON扩展crx文件
下载Cookies2JSON扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Minimalistic extension that allows you to safely export all cookies in a browser tab as a simple JSON file. 扩展基本信息
| 名称 | |
| ID | ffbinkjibaannhnogomaebfmogppggcd |
| 官方URL | https://chromewebstore.google.com/detail/cookies2json/ffbinkjibaannhnogomaebfmogppggcd |
| 简介 | Export cookies to a simple JSON file. |
| 文件大小 | 30.6 KB |
| 安装次数 | 93 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2021-05-06 |
| 上架时间 | 2021-05-05 |
| 开发者 | sunnyclouds.apps |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/sunnyclouds-apps/Cookies2JSON |
| 帮助页面URL | https://github.com/sunnyclouds-apps/Cookies2JSON/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Cookies2JSON",
"description": "Export cookies to a simple JSON file.",
"version": "1.0.0",
"icons": {
"16": "icons\/icon_16.png",
"128": "icons\/icon_128.png"
},
"browser_action": {
"default_icon": {
"19": "icons\/icon_19.png",
"38": "icons\/icon_38.png"
},
"default_title": "Cookies2JSON",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_security_policy": "script-src 'self'; object-src 'self'",
"permissions": [
"tabs",
"cookies",
"http:\/\/*\/*",
"https:\/\/*\/*"
]
} | |