蜘蛛转码

蜘蛛转码

集成了JSON格式化、base64编解码、encodeURIComponent、decodeURIComponent等功能

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "蜘蛛转码",
  "version": "1.2.0",
  "description": "集成了JSON格式化、base64编解码、encodeURIComponent、decodeURIComponent等功能",
  "browser_action": {
    "default_icon": "image/spider.png",
    "default_title": "蜘蛛转码",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-1.8.3.js",
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Q",
        "mac": "MacCtrl+Q"
      },
      "description": "Opens hello.html"
    }
  },
  "permissions": [
    "activeTab"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'"
}