A Chrome extension that hides all YouTube UI except for your video
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

manifest.json 529B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "Refined YouTube",
  3. "version": "0.0.1",
  4. "manifest_version": 2,
  5. "description": "A more refined YouTube experience",
  6. "homepage_url": "https://git.sr.ht/~simulacrumparty/refined-youtube",
  7. "icons": {
  8. "16": "icons/icon16.png",
  9. "48": "icons/icon48.png",
  10. "128": "icons/icon128.png"
  11. },
  12. "default_locale": "en",
  13. "content_scripts": [
  14. {
  15. "matches": [
  16. "https://www.youtube.com/*"
  17. ],
  18. "css": [
  19. "style.css"
  20. ],
  21. "js": [
  22. "index.js"
  23. ]
  24. }
  25. ]
  26. }