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.

31 lines
685 B

5 years ago
5 years ago
5 years ago
5 years ago
  1. {
  2. "short_name": "YKonsole Helper",
  3. "version": "1.0",
  4. "manifest_version": 2,
  5. "background": {
  6. "scripts": ["background.js"]
  7. },
  8. "content_scripts": [
  9. {
  10. "matches": ["https://www.youtube.com/*"],
  11. "css": ["static/css/main.css"],
  12. "js": ["static/js/main.js", "static/js/runtime-main.js"]
  13. }
  14. ],
  15. "name": "YKonsole Helper",
  16. "icons": {
  17. "32": "icon.png"
  18. },
  19. "start_url": ".",
  20. "display": "standalone",
  21. "theme_color": "#000000",
  22. "background_color": "#ffffff",
  23. "permissions": [
  24. "storage",
  25. "activeTab",
  26. "declarativeContent",
  27. "https://www.youtube.com/",
  28. "https://indigo.stian-aune.com/",
  29. "http://127.0.0.1:9999/"
  30. ]
  31. }