Chrome扩展程序:page_action的行为类似于browser_action(未在地址栏中显示)

时间:2016-03-09 17:14:03

标签: google-chrome google-chrome-extension

我写了一个Chrome扩展程序: https://chrome.google.com/webstore/detail/commentanywhereorg/popgjmfoablgkolkhmnicijimhpifega 其中包含"page_action"(而不是browser action!)。

我已将扩展程序从2月初开始加载到Chrome商店,该图标始终显示在Chrome的地址栏中,位于书签/收藏的星标图标旁边,按照计划:

enter image description here

由于两周左右(并且没有对扩展程序进行任何更改或更新),图标现在始终显示在地址栏旁边的图标栏中,而不是在地址栏中,好像它会被声明为" browser_action",但它不是!

enter image description here

也许是因为Chrome更新,我使用的是最新版本49.0.2623.87。我已经卸载并重新安装了扩展程序,没有任何更改。

Google是否更改了网页操作的行为?有人知道吗?如何将图标恢复到地址栏?

我也感到困惑的是https://developer.chrome.com/extensions/pageAction上的文档:

  

使用chrome.pageAction API将图标放在地址栏中。   页面操作表示可以在当前页面上执行的操作,   但这并不适用于所有页面。

但是他们的屏幕截图显示了地址栏外的图标(在他们的示例中,RSS图标):

enter image description here

我的扩展程序清单如下所示:

{
  "manifest_version": 2,
  "name": "CommentAnywhere.org",
  "description": "CommentAnywhere.org allows you to comment anywhere on the web using your Facebook account.",
  "icons": {
     "128": "icon_128x128.png",
     "48": "icon_48x48.png",
     "32": "icon_32x32.png",
     "16": "icon_16x16.png"
  },
  "version": "1.4.1",
  "page_action": {
    "default_icon": "icon_32x32.png",
    "default_title": "CommentAnywhere.org",
    "default_popup": "popup.html"
  },

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

1 个答案:

答案 0 :(得分:1)

我刚刚在另一个SO主题中找到答案 - 但标题不同 - 因此首先错过了它。 感谢用户Teepeemm。

Popup is not appearing when used page_action

  

Google最近更改了网页操作的工作方式和文档   还没有赶上。以前,页面操作出现在   地址栏,只显示在您调用show的标签上。

来自Marc Guiselin的有用链接也澄清了它:http://thenextweb.com/apps/2016/03/04/google-chrome-bans-extensions-from-the-address-bar-forcing-them-to-the-side/