Compare commits

...

3 Commits

Author SHA1 Message Date
Timo b11b3316af fix(firefox): add gecko data collection permissions and proper icon sizes 2026-05-18 19:24:19 +02:00
MacBook e337527e63 docs: add inline icon to README.md header 2026-05-18 15:17:09 +02:00
GitHub Action 882565a079 chore(release): update versions to v1.4.4 [skip ci] 2026-05-18 13:14:48 +00:00
8 changed files with 20 additions and 12 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
# KoalaSync
# <img src="extension/icons/icon128.png" width="32" valign="middle"> KoalaSync
<p align="center">
<a href="https://github.com/Shik3i/KoalaSync/actions/workflows/release.yml"><img src="https://github.com/Shik3i/KoalaSync/actions/workflows/release.yml/badge.svg" alt="Release Status"></a>
Binary file not shown.

After

Width:  |  Height:  |  Size: 889 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

+11 -7
View File
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "KoalaSync",
"version": "1.3.1",
"version": "1.4.4",
"description": "Watch party extension to synchronize video playback on YouTube, Twitch, Netflix, and HTML5 sites in real-time with friends.",
"permissions": [
"storage",
@@ -17,21 +17,25 @@
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon128.png",
"48": "icons/icon128.png",
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"content_scripts": [
{
"matches": ["https://sync.koalastuff.net/*"],
"js": ["bridge.js"],
"matches": [
"https://sync.koalastuff.net/*"
],
"js": [
"bridge.js"
],
"run_at": "document_start"
}
],
"icons": {
"16": "icons/icon128.png",
"48": "icons/icon128.png",
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}
+1
View File
@@ -153,6 +153,7 @@
"integrity": "sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==",
"dev": true,
"license": "Apache-2.0",
"peer": true,
"peerDependencies": {
"bare-abort-controller": "*"
},
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "koalasync",
"version": "1.3.1",
"version": "1.4.4",
"description": "KoalaSync Build Scripts",
"private": true,
"scripts": {
+4 -1
View File
@@ -161,7 +161,10 @@ async function run() {
};
manifest.browser_specific_settings = {
gecko: {
id: "koalasync@koalastuff.net"
id: "koalasync@koalastuff.net",
data_collection_permissions: {
required: ["none"]
}
}
};
return manifest;
+2 -2
View File
@@ -1,4 +1,4 @@
{
"version": "1.3.1",
"date": "2026-05-18T13:02:13Z"
"version": "1.4.4",
"date": "2026-05-18T13:14:48Z"
}