copy cookie

从 curl 命令中解析出 cookie 字符串,并插入到当前页面。 适用于不同页面之间复制 cookie

What is copy cookie?

copy cookie is a Chrome extension developed by 曾小涛, and its main feature is "从 curl 命令中解析出 cookie 字符串,并插入到当前页面。 适用于不同页面之间复制 cookie".

Extension Screenshots

screenshot

Download copy cookie Extension CRX File

Download copy cookie extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        从 curl 命令中解析出 cookie 字符串,并插入到当前页面。
适用于不同页面之间复制 cookie                    

Extension Basic Information

Name copy cookie copy cookie
ID mcaogedpggebopnccipdcgnnphhaabjn
Official URL https://chrome.google.com/webstore/detail/copy-cookie/mcaogedpggebopnccipdcgnnphhaabjn
Description 从 curl 命令中解析出 cookie 字符串,并插入到当前页面。 适用于不同页面之间复制 cookie
File Size 64.83 KB
Installation Count 79
Current Version 0.0.3
Last Updated 2019-10-11
Publish Date 2019-10-10
Developer 曾小涛
Email [email protected]
Payment Type free
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "copy cookie",
    "version": "0.0.3",
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": "img\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "notifications",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/cookie.js"
            ]
        }
    ]
}