Explore the internet and share what you've found!
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": "Ahoy!",
"description": "Explore the internet and share what you've found!",
"version": "1.4",
"manifest_version": 3,
"action": {
"default_popup": "views/html/default.html"
},
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"http://localhost:3000/*",
"https://api.getahoy.net/*"
],
"permissions": [
"tabs",
"storage",
"alarms",
"notifications"
],
"icons": {
"16": "images/Ahoylogo1.png",
"48": "images/Ahoylogo1.png",
"128": "images/Ahoylogo1.png"
}
}