You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
manifest.json -> [https://developer.chrome.com/extensions/manifest ] // AKA the setup
{
"manifest_version": 2,
"name": "Getting started example",
"description": "This extension shows a Google Image search result for the current page",
"version": "1.0",
"browser_action": {
"default_icon": "icon.png", // this is just the icon for the plugin
"default_popup": "popup.html" //defines the html file to be shown in plugin
},
"permissions": [
"activeTab",
"https://ajax.googleapis.com/"
]
}
Investigate building and publishing chrome plugins.
The text was updated successfully, but these errors were encountered: