Lofter标签批量添加器

Lofter标签批量添加器

Lofter标签管理器,可为Lofter博客批量添加标签,使用前请先添加您常用的标签集。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Lofter标签批量添加器",
  "manifest_version": 2,
  "version": "1.0.0",
  "description": "Lofter标签管理器,可为Lofter博客批量添加标签,使用前请先添加您常用的标签集。",
  "browser_action": {
    "default_icon": "icons/icon16.png",
    "default_popup": "popup.html",
    "default_title": "Lofter标签生成器"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.lofter.com/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/jquery-1.7.1.js",
        "js/jquery-ui.min.js",
        "js/content_script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "options_page": "options.html"
}