stadia-avatar/client/extension/manifest.json
Victor Westerlund 74b2635755 New folder structure for extension
Separated client- and server-side features into seperate root folders. Since Stadia Avatar now has two versions (Userscript and Chrome extension).

Added core extension functionality.

Created a page constructor for extension popup. High probability that I will create a seperate repo for this feature, as it's pretty neat and very useful for future extensions.
2021-02-08 04:50:47 +01:00

26 lines
No EOL
728 B
JSON

{
"name": "Stadia Avatar",
"version": "1.0.1",
"author": "Victor Westerlund",
"default_locale": "en",
"homepage_url": "https://github.com/VictorWesterlund/stadia-avatar",
"description": "__MSG_extension_description__",
"icons": {
"16": "assets/img/logo_icon_16.png",
"32": "assets/img/logo_icon_32.png",
"48": "assets/img/logo_icon_48.png",
"128": "assets/img/logo_icon_128.png"
},
"host_permissions": [
"*://stadia.google.com/*"
],
"action": {
"default_popup": "popup.html",
"default_title": "__MSG_extension_description__",
"default_icon": {
"16": "assets/img/logo_icon_16.png",
"32": "assets/img/logo_icon_32.png"
}
},
"manifest_version": 3
}