manifest.json 783 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "manifest_version": 2,
  3. "name" : "Pimp My Tube",
  4. "description" : "Annoyed by Youtube displaying, this add on will help you clean up unwanted feeds",
  5. "version" : "0.0.1",
  6. "icons" : {
  7. "48" : "images/48_icon.png",
  8. "128" : "images/128_icon.png"
  9. },
  10. "browser_action" : {
  11. "default_icon" : {
  12. "18" : "images/19_icon.png",
  13. "38" : "images/38_icon.png"
  14. },
  15. "default_popup" : "view/popup.html"
  16. },
  17. "background" : {
  18. "page" : "view/background.html"
  19. },
  20. "content_scripts" : [{
  21. "matches" : ["https://www.youtube.com/feed/subscriptions"],
  22. "js" : ["js/notification.min.js"]
  23. }],
  24. "permissions" : [
  25. "tabs",
  26. "storage"
  27. ],
  28. "web_accessible_resources": [
  29. "fonts/*",
  30. "images/*"
  31. ],
  32. "options_ui": {
  33. "page": "view/options.html",
  34. "chrome_style": true
  35. }
  36. }