Files
remove-youtube-suggestions/src/firefox_manifest.json
T
Lawrence Hook 8825666512 Merge the monetization feature branch.
Add RYS Premium subscription system

Introduce optional paid tier with sign-in, Stripe billing, and premium
feature gating. Core features remain free. Includes Node.js server for
auth, payments, and license management.

Extension changes:
- Sign-in flow with magic link email
- Premium/upgrade/account modals with branded UI
- Premium feature gating (60+ advanced settings)
- Password lock and scheduling (premium)
- Fix "hide all but first row" for YouTube's new flat homepage DOM
- Hide sidebar ad panels by default
- Enable "Hide all Shorts" by default

Server:
- Magic link auth with rate limiting
- Stripe checkout, webhooks, and billing portal
- JWT-based license tokens
- AWS SES transactional emails (welcome, sign-in, cancellation)
- Grandfathered donor support

Also adds CI workflow, server test suite, and extension unit tests.
2026-02-15 18:45:37 -05:00

65 lines
1.4 KiB
JSON

{
"name": "RYS — Remove YouTube Suggestions",
"description": "Spend less time on YouTube. Customize YouTube's user interface to be less engaging.",
"homepage_url": "https://github.com/lawrencehook/remove-youtube-suggestions",
"manifest_version": 2,
"version": "4.3.71",
"icons": {
"16": "/images/16.png",
"32": "/images/32.png",
"64": "/images/64.png",
"128": "/images/128.png"
},
"background": {
"scripts": [
"/background/events.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"/shared/main.js",
"/shared/https.js",
"/shared/utils.js",
"/shared/banners.js",
"/content-script/main.js"
],
"css": ["/content-script/main.css"],
"all_frames": true,
"matches": [
"*://www.youtube.com/*",
"*://m.youtube.com/*"],
"run_at": "document_start"
}
],
"browser_action": {
"default_popup": "/options/main.html",
"default_title": "Remove Youtube Suggestions",
"default_icon": {
"16": "/images/16.png",
"32": "/images/32.png",
"64": "/images/64.png",
"128": "/images/128.png"
}
},
"options_ui": {
"page": "/options/main.html",
"open_in_tab": true
},
"permissions": [
"storage",
"*://www.youtube.com/*",
"*://m.youtube.com/*",
"https://server.lawrencehook.com/*"
],
"web_accessible_resources": [
"/images/rys.svg"
]
}