Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "DePINed",
"version": "2.0",
"description": "Get rewarded for your unused internet, and computer resources by powering the AI revolution",
"action": {
"default_popup": "popup.html"
},
"permissions": [
"windows",
"alarms",
"tabs"
],
"host_permissions": [
"https:\/\/api.depined.org\/*"
],
"externally_connectable": {
"matches": [
"*:\/\/*.depined.org\/*"
]
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.depined.org\/*"
],
"js": [
"content.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"icons": {
"48": "images\/48.png",
"128": "images\/128.png"
}
}