tokencv

复制浏览器网页的token,便于开发过程中token过期手动复制

What is tokencv?

tokencv is a Chrome extension developed by vgbire, and its main feature is "复制浏览器网页的token,便于开发过程中token过期手动复制".

Extension Screenshots

screenshot

Download tokencv Extension CRX File

Download tokencv 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

                        在web开发阶段,本地开发调试时需要携带的身份认证信息token,需要到正式服去获取,然后手动复制粘贴放在cookie、localStorage、sessionStorage里的token到本地才能调试。
虽然操作并不复杂,却是重复无意义的工作,而且如果是这种场景,几乎每天都要进行一次这种重复工作(取决于token过期时间),所以为了简化这种操作,开发了此款插件。
此插件可以取出用户希望复制的某个网站(From Domain)下某个存储位置(Cookie、localStorage...)某个字段(field)里的值,在变动时自动复制到目标网站(To Domain)的对应位置里,完全声调手动复制粘贴的操作                    

Extension Basic Information

Name tokencv tokencv
ID jegglbdmahjijagibdjefocmhphcmlif
Official URL https://chromewebstore.google.com/detail/tokencv/jegglbdmahjijagibdjefocmhphcmlif
Description 复制浏览器网页的token,便于开发过程中token过期手动复制
File Size 262 KB
Installation Count 43
Current Version 2.6.0
Last Updated 2024-03-05
Publish Date 2021-12-02
Developer vgbire
Email [email protected]
Payment Type free
Extension Website https://github.com/Vgbire/tokencv
Help Page URL https://github.com/Vgbire/tokencv
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "tokencv",
    "version": "2.6.0",
    "description": "\u590d\u5236\u6d4f\u89c8\u5668\u7f51\u9875\u7684token\uff0c\u4fbf\u4e8e\u5f00\u53d1\u8fc7\u7a0b\u4e2dtoken\u8fc7\u671f\u624b\u52a8\u590d\u5236",
    "icons": {
        "128": ".\/icon\/token.png"
    },
    "action": {
        "default_icon": ".\/icon\/token.png",
        "default_title": "tokencv"
    },
    "background": {
        "service_worker": ".\/background\/index.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/content\/utils.js",
                ".\/content\/cookie.js",
                ".\/content\/index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ]
}