tokencv

tokencv

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

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "tokencv",
  "version": "2.6.0",
  "description": "复制浏览器网页的token,便于开发过程中token过期手动复制",
  "icons": {
    "128": "./icon/token.png"
  },
  "action": {
    "default_icon": "./icon/token.png",
    "default_title": "tokencv"
  },
  "background": {
    "service_worker": "./background/index.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./content/utils.js",
        "./content/cookie.js",
        "./content/index.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ]
}