相关疑难解决方法(0)

如何为Chrome应用指定经过验证的网站?

我正在尝试启用内联安装,但继续收到以下错误

Inline installs can only be initiated for Chrome Web Store items that have one or more verified sites
Run Code Online (Sandbox Code Playgroud)

我通过名称标签和.html文件验证了我的测试网站的所有权.这个测试网站是否也归我的其他电子邮件(用于分析)所有问题?这一切都在Canary进行测试,我在那里用工作电子邮件登录.

在开发人员仪表板中,我将显示名称更改为我验证的站点(例如www.example.com).我也启用了复选框This item uses inline install.

目前尚不清楚我如何将我拥有的网站与我在Chrome网上商店发布的应用相关联.

好像我需要在清单文件中指定我拥有的网站?

在我的www.mydomain.com/testfile.html中:

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>blu</title>
    <meta charset="UTF-8" />
    <link rel="shortcut icon" href="./img/favicon.png">

    <link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/myAppIdNumber">
  </head>
  <body>
    <div style="width: 600px; margin: 40px auto;">
      <h1>
        Example Install Page
      </h1>

      <p>
        You can initiate app and extension installations "inline" from your site. These apps and extensions are still hosted in …
Run Code Online (Sandbox Code Playgroud)

install google-chrome-app

9
推荐指数
1
解决办法
5171
查看次数

如何更改 Chrome 扩展中的提供者/开发者信息?

我刚刚创建了一个 chrome 扩展,我想知道如何更改“提供者”和“开发者”信息。检查下面的屏幕截图,我已在我所指的信息下划线。

在此处输入图片说明

我发现了这个旧的 SO 线程 -如何在清单文件中指定扩展名的作者

我已经尝试过这样的事情

{
   "browser_action": {
      "default_icon": "icons/logo.png",
      "default_popup": "popup.html",
      "default_title": "Timezone Convertor"
   },
   "description": "The all in one, timezone plugin you had been waiting for!",   
   "manifest_version": 2,
   "name": "Timezone Convertor",
   "permissions": [ "storage", "tabs", "http://*/*", "https://*/*" ],
   "update_url": "https://clients2.google.com/service/update2/crx",
   "version": "1.5",
   "authors": [{"name": "Ali Rizvi", "email": "example@gmail.com"}, {"name": "Yasser R Shaikh", "email": "example@gmail.com"}]
}
Run Code Online (Sandbox Code Playgroud)

但它不起作用。谷歌的清单文档也没有太多关于它的信息。

google-chrome-extension chrome-web-store

2
推荐指数
1
解决办法
1340
查看次数