自定义 chrome 扩展未显示?
Custom chrome extension not showing up?
我为 chrome 创建了一个自定义扩展,它安装成功并且运行良好,但我在右上角的选项菜单中没有看到它?
我是否需要在 manifest.json
中包含其他内容,或者我是否必须编写更多需要显示的代码,因为我没有任何选项,它只是一个 Tampermonkey 脚本转换成扩展。
manifest.json
:
{
"manifest_version": 2,
"name": "Name..",
"version": "0.7..",
"description": "Desc..",
"icons": {
"128": "icon_128.png"
},
"author": "...",
"content_scripts": [{
"exclude_globs": [],
"include_globs": ["*"],
"js": ["jquery-3.1.1.min.js", "myScript.user.js"],
"matches": ["https://example.com/*"],
"run_at": "document_start"
}],
"converted_from_user_script": true
}
我在这里找到了答案:https://developer.chrome.com/extensions/browserAction
就我而言,我需要添加:
"browser_action": {
"default_icon": {
"128": "icon_128.png"
},
"default_title": "title..."
}
我为 chrome 创建了一个自定义扩展,它安装成功并且运行良好,但我在右上角的选项菜单中没有看到它?
我是否需要在 manifest.json
中包含其他内容,或者我是否必须编写更多需要显示的代码,因为我没有任何选项,它只是一个 Tampermonkey 脚本转换成扩展。
manifest.json
:
{
"manifest_version": 2,
"name": "Name..",
"version": "0.7..",
"description": "Desc..",
"icons": {
"128": "icon_128.png"
},
"author": "...",
"content_scripts": [{
"exclude_globs": [],
"include_globs": ["*"],
"js": ["jquery-3.1.1.min.js", "myScript.user.js"],
"matches": ["https://example.com/*"],
"run_at": "document_start"
}],
"converted_from_user_script": true
}
我在这里找到了答案:https://developer.chrome.com/extensions/browserAction
就我而言,我需要添加:
"browser_action": {
"default_icon": {
"128": "icon_128.png"
},
"default_title": "title..."
}