简单的chrome插件,实现自动登录.

今天搞了一个chrome的插件,实现自动登录.初次体验chrome的插件开发,好像还不错,呵呵~以后有时间研究一下.

 manifest.json

{
  "name": "auto login",
  "version": "1.0",
  "permissions": [
    "tabs", "http://*/*", "https://*/*"
  ],
  "browser_action": {
      "default_title": "AutoLogin",
      "default_icon": "icon.png",
      "popup": "popup.html"
  }
}

 

 popup.html




登录Admin
登录xielei
登录fgs1

 

你可能感兴趣的:(other)