【发布时间】:2016-09-25 04:43:58
【问题描述】:
是否可以在 Mac Dock 中为我正在开发的 chrome 扩展添加一个图标。
这里的扩展代码仅供参考。 manifest.json:
{
"manifest_version": 2,
"name": "Habitica",
"author": "Sam Dale",
"description": "A launcher to quickly get to Habitica. Especially great for Mac users.",
"version": "1.0",
"icons": {"16": "habitica-logo-16.png", "128": "habitica-logo-128.png", "300": "habitica-logo-300.png"},
"browser_action": {
"default_icon": "habitica-logo-128.png",
"default_title": "Habitica"
},
"background": {
"scripts": ["background.js"],
"persistent": false
}
}
背景.js:
chrome.browserAction.onClicked.addListener(function(tab) {
chrome.tabs.create({ url: "https://habitica.com/#/tasks" });
});
【问题讨论】:
标签: macos google-chrome google-chrome-extension shortcut