Build folder rename

This commit is contained in:
2022-09-14 09:27:52 +03:00
parent 36d249f92b
commit d13e318fe6
6 changed files with 1 additions and 1 deletions

44
extension/manifest.json Normal file
View File

@@ -0,0 +1,44 @@
{
"content_scripts": [
{
"all_frames": true,
"exclude_matches": [
"*://*.twitch.tv/*.html",
"*://*.twitch.tv/*.html?*",
"*://*.twitch.tv/*.htm",
"*://*.twitch.tv/*.htm?*"
],
"js": [
"run.js"
],
"matches": [
"*://*.twitch.tv/*"
]
}
],
"description": "Add notes to twitch users (only visible to you)",
"externally_connectable": {
"matches": [
"*://*.twitch.tv/*"
]
},
"homepage_url": "https://rdarius.lt/projects/chrome-extensions/twitch-notes",
"icons": {
"128": "icon.png"
},
"manifest_version": 3,
"name": "Twitch Notes",
"version": "0.0.1",
"web_accessible_resources": [
{
"resources": [
"twitch-notes.js",
"twitch-notes.css"
],
"matches": [
"*://*.twitch.tv/*"
]
}
],
"permissions": ["webNavigation", "webRequest"]
}