Refreshes all POP3 accounts when the POP3 button is clicked
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Gmail POP3 Refresh Button",
"description": "Refreshes all POP3 accounts when the POP3 button is clicked",
"version": "0.1.5",
"author": "StrangeMouse",
"manifest_version": 3,
"icons": {
"16": "/images/gmail16.png",
"32": "/images/gmail32.png",
"48": "/images/gmail48.png",
"128": "/images/gmail128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "/images/gmail16.png",
"32": "/images/gmail32.png",
"48": "/images/gmail48.png",
"128": "/images/gmail128.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://mail.google.com/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"storage"
]
}