A Chrome extension that hides all YouTube UI except for your video
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }