多级智能填单

多级智能填单

只需简单操作,即可记忆填写当前页面,或者跨网站填单。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": true,
    "scripts": [
      "js/jquery.js",
      "js/app.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "iduoji24_disabled.png",
    "default_popup": "html/popup.html",
    "default_title": "多级智能填单"
  },
  "content_scripts": [
    {
      "js": [
        "contentScript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "image/*",
    "html/*",
    "js/*"
  ],
  "icons": {
    "16": "image/logo16x16.png",
    "48": "image/logo48x48.png",
    "128": "image/logo128x128.png"
  },
  "description": "只需简单操作,即可记忆填写当前页面,或者跨网站填单。",
  "manifest_version": 2,
  "name": "多级智能填单",
  "permissions": [
    "contextMenus",
    "tabs",
    "http://localhost:8080/*",
    "http://www.iduoji.cn/*"
  ],
  "short_name": "多级",
  "version": "0.5.3"
}