奥利奥!!!
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",
"manifest_version": 3,
"name": "Oreo",
"version": "1.0",
"description": "奥利奥!!!",
"author": "Todd",
"icons": {
"48": "icon.png",
"128": "icon.png"
},
"action": {
"default_icon": "icon.png",
"default_title": "冲啊!奥利奥!"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"scripting"
],
"host_permissions": [
"chrome://net-internals/#sockets",
"http://*/*",
"https://*/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self' ;"
}
}