I was developing a chrome extension, but I encountered an issue where the popup does not display when clicking on the icon.
After researching online, I found suggestions to change page_action
to browser_action
. However, even after making this adjustment, the popup still doesn't show up. My operating system is Windows 10, and I am using the latest version of Chrome.
Below is my mainfest.json
file:
{
"manifest_version": 2,
"name": "Key shifter",
"version": "1.0.0",
"description": "select text then press ctrl + shift + e",
"icons": {"128":"icon128.png"},
"browser_action": {
"default_title": "I dont know what im doing",
"default_popup:": "popup.html"},
"permissions": [
"activeTabs",
"http://*/*",
"https://*/*",
]
}