diff --git a/.github/workflows/validate-extension.yml b/.github/workflows/validate-extension.yml new file mode 100644 index 0000000..70538fa --- /dev/null +++ b/.github/workflows/validate-extension.yml @@ -0,0 +1,37 @@ +name: Validate Extension + +on: + pull_request: + push: + branches: + - main + +jobs: + validate-extension: + name: Validate extension package + runs-on: ubuntu-latest + + steps: + - name: Check out repository + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: 22 + cache: npm + + - name: Install dependencies + run: npm ci + + - name: Validate extension files + run: npm run validate:extension + + - name: Run lint alias + run: npm run lint + + - name: Build ZIP package + run: npm run zip + + - name: Inspect ZIP contents + run: unzip -l dist/YT_Metadata_Pro_Extension.zip diff --git a/README.md b/README.md index 16559c9..5add62c 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@
+
+
@@ -209,6 +211,16 @@ Useful log meanings:
---
+## Known Limitations
+
+- Search/results pages are the tested scope for the current release.
+- YouTube can change its page structure, which may require content-script selector updates.
+- API key setup, YouTube Data API enablement, quota, or regional API behavior can affect lookup results.
+- The extension only checks YouTube's `licensedContent` metadata signal.
+- No badge means the video was not flagged by this metadata path; it does not mean the audio is safe to reuse.
+
+---
+
## Privacy & Security
YT Metadata Pro keeps the workflow local and inspectable.