需要使用远程代码的理由。- 铬扩展

Mee*_*pra 2 google-chrome google-chrome-extension

由于 2 个错误,我的扩展程序未发布

  • 需要使用远程代码的理由。
  • 需要单一用途的描述。

这是我的清单:

{
  "name": "Spotlight",
  "icons": {
    "128": "icon_128.png",
    "96": "icon.png"
  },
  "description": "Spotlight - Browse open tabs, search history, bookmarks, downloads, and do much more!",
  "version": "1.19",
  "manifest_version": 2,
  "permissions": [],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "homepage_url": "https://usespotlight.co",
  "optional_permissions" : [ 
    "<all_urls>",
    "tabs",
    "bookmarks",
    "history",
    "downloads",
    "storage"
  ],
  "background": {
    "scripts": ["background.js"],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon.png"
  }, 
  "commands": {
    "toggle-feature": {
      "suggested_key": {
        "default": "Ctrl+M",
        "mac": "Command+M"
       },
      "description": "Toggle spotlight"
    }
  }
}
Run Code Online (Sandbox Code Playgroud)

Ger*_*abo 5

您必须转到新的开发人员仪表板并填写隐私菜单下的这些字段。