2

我有一个简单的 chrome 扩展程序,它在 Google Chrome 中显示一个小图标。单击时,它会加载我网站的搜索页面,从而将您重定向到正确的页面。

https://chrome.google.com/webstore/detail/w3patrol-watch-over-any-w/addcgpijdjacmndaadfgcpbfinagiplm是扩展。

现在,谷歌迫使我更新到清单版本 2,而不是 1。但这破坏了我的工作扩展。

manifest.json我添加了 manifest_version 2,但从那时起,当我单击它时,该图标不再起作用。

{
   "background": {
    "page": "background.html"
    },
   "browser_action": {
      "default_icon": "icon19.png",
      "default_title": "__MSG_default_title__"
   },
   "default_locale": "en",
   "description": "__MSG_description__",
   "icons": {
      "128": "icon128.png",
      "19": "icon19.png",
      "48": "icon48.png"
   },
   "name": "__MSG_name__",
   "permissions": [ "tabs", "http://*.w3patrol.com/" ],
   "update_url": "http://clients2.google.com/service/update2/crx",
   "version": "1.0",
   "manifest_version": 2
}

这是背景.html

<script type="text/javascript">
chrome.browserAction.onClicked.addListener(function(tab) {
    chrome.tabs.getSelected(null,function(tab) {
        chrome.tabs.create( { url: "http://w3patrol.com/search.php?q=" +tab.url } );
    });
});

</script>

我需要添加/更改什么才能使其与清单版本 2 一起使用?

4

1 回答 1

9

You just need to remove the script tag from your background page. Here's how background.js(instead of background.html) should look like:

chrome.browserAction.onClicked.addListener(function(tab) {
    chrome.tabs.getSelected(null,function(tab) {
        chrome.tabs.create( { url: "http://w3patrol.com/search.php?q=" +tab.url } );
    });
});

And remove the 'page' property in background. Add 'scripts' property:

  "background": {
    "scripts": ["background.js"]
  },
于 2012-11-10T08:34:17.300 回答