我的Chrome扩展程序不是NPAPI插件,但Web Store抱怨它。是或不是NPAPI插件?

时间:2014-02-11 19:30:54

标签: javascript html google-chrome npapi

我正在创建Chrome扩展程序,但是,由于Web Store认为它是NPAPI插件,因此需要不断对其进行审核。我做了我的研究,我无法弄清楚为什么网上商店说这是一个NPAPI插件。这是我的清单文件,如果有帮助的话。

    {
  "manifest_version": 2,

  "name": "Kwik Note",
  "description": "A quick and easy to use note maker",
  "version": "1.0.1",

  "permissions": [
    "contextMenus",
    "storage"
  ],
  "browser_action": {
    "default_icon": {
         "19": "icon19.png",
         "38": "icon38.png"
      },
    "default_popup": "popup.html"
  },

  "icons": {
      "128": "icon128.png",
      "48": "icon48.png",
      "16": "icon16.png"
   },

 "background": {
    "scripts":  [
            "background.js"
        ]
    },

    "content_scripts": [{
        "matches": ["<all_urls>"],
        "js": ["jquery.min.js", "jquery-ui.js", "create.js"],
        "css": ["theme.css"]
    }],

    "options_page": "options.html"
}

请问我如何使我的扩展程序不被标记为NPAPI插件。

0 个答案:

没有答案