pvzexpert

manifest.json

Nov 17th, 2021
628
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. {
  2. "name": "Getting Started Example",
  3. "description": "Build an Extension!",
  4. "version": "1.0",
  5. "manifest_version": 3,
  6. "background": {
  7. "service_worker": "background.js"
  8. },
  9. "permissions": ["storage", "activeTab", "scripting"],
  10. "action": {
  11. "default_popup": "popup.html",
  12. "default_icon": {
  13. "16": "/images/get_started16.png",
  14. "32": "/images/get_started32.png",
  15. "48": "/images/get_started48.png",
  16. "128": "/images/get_started128.png"
  17. }
  18. },
  19. "icons": {
  20. "16": "/images/get_started16.png",
  21. "32": "/images/get_started32.png",
  22. "48": "/images/get_started48.png",
  23. "128": "/images/get_started128.png"
  24. },
  25. "options_page": "options.html"
  26. }
  27.  
Advertisement
Add Comment
Please, Sign In to add comment