首页 > 解决方案 > Chrome 扩展程序拒绝说“您的产品违反了该政策的隐私政策和安全传输部分”

问题描述

我提交了一个 chrome 扩展,但被拒绝说

Your Product violates the Privacy Policy & Secure Transmission section of the policy, which requires that:


If your Product handles personal or sensitive user data (including personally identifiable information, financial and payment information, health information, authentication information, website content and resources, form data, web browsing activity, user-provided content and personal communications), then your Product must:

 > Post a privacy policy, and

 > Handle the user data securely, including transmitting it via modern cryptography.

以下是manifest.json

{
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDescription__",
  "version": "0.0.1",
  "version_name": "0.0.1 beta",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "scripts": ["scripts/background.js"]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "__MSG_browserActionTitle__"
  },
  "options_page": "pages/options.html",

  "content_scripts": [
    {
      "matches": ["http://*/*", "https://*/*"],
      "css": ["styles/contentscript.css"],
      "js": ["scripts/contentscript.js"],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": ["activeTab", "downloads", "storage", "tabs", "<all_urls>"],
  "web_accessible_resources": ["images/*"]
}


该扩展程序在活动选项卡上收集图像的 URL,当用户选择时,将从后台下载这些图像,并且我不收集任何数据(该扩展程序在gallery-master是开源的以进行验证)。

有人可以告诉我吗

  1. 关于隐私政策中包含什么内容的任何指示,因为我不知道使用哪种语言或法律措辞。另外,我不收集任何用户数据。
  2. 如果图像 URL 不是,是否不允许获取图像https。(基于他们的第二点,即安全地处理用户数据。我不确定用户访问的网页上的图像是否是用户数据的一部分,这些数据直接在用户浏览器中处理,不会转到外部链接)。

您认为还有什么其他事情是拒绝的理由,在再次提交之前我应该​​改变什么?

标签: google-chromegoogle-chrome-extension

解决方案


推荐阅读