Google chrome 自定义chrome扩展未显示?

Google chrome 自定义chrome扩展未显示?,google-chrome,google-chrome-extension,manifest.json,Google Chrome,Google Chrome Extension,Manifest.json,我为chrome创建了一个自定义扩展,安装成功,效果很好,但在右上角的“选项”菜单中看不到它 我是否需要在manifest.json中包含其他内容,或者我是否需要编写更多需要显示的内容,因为我没有任何选项,它只是一个转换为扩展的Tampermonkey脚本 manifest.json: { "manifest_version": 2, "name": "Name..", "version": "0.7..", "description": "Desc..",

我为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
}
我在这里找到了答案:

就我而言,我需要补充:

"browser_action": { 
    "default_icon": { 
        "128": "icon_128.png" 
    },
    "default_title": "title..."
}
我在这里找到了答案:

就我而言,我需要补充:

"browser_action": { 
    "default_icon": { 
        "128": "icon_128.png" 
    },
    "default_title": "title..."
}

如果您不打算实际使用随
include_globs
(即将所有内容与
“*”
)或
exclude_globs
)提供的功能,那么最好不要将它们包含在manifest.json中。如果没有包含它们,则不需要在每个页面上进行匹配处理。如果没有选项或操作,为什么要寻找显示不存在的内容的UI界面?你到底希望在哪里看到“它”?您希望看到什么(例如文本、图标)?如果您不打算实际使用随
include_globs
(即将所有内容与
“*”
)或
exclude_globs
)提供的功能,那么最好不要将它们包含在manifest.json中。如果没有包含它们,则不需要在每个页面上进行匹配处理。如果没有选项或操作,为什么要寻找显示不存在的内容的UI界面?你到底希望在哪里看到“它”?您希望看到什么(例如文本、图标)?