Advertisement
Guest User

Untitled

a guest
Jun 11th, 2016
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. {
  2. "name": "Testplugin! 2.0",
  3. "version": "0.0.1",
  4. "manifest_version": 2,
  5. "description": "No description",
  6. "icons": {
  7. "16": "icons/icon16.png",
  8. "48": "icons/icon48.png",
  9. "128": "icons/icon128.png"
  10. },
  11. "default_locale": "en",
  12. "background": {
  13. "scripts": [
  14. "src/bg/background.js"
  15. ],
  16. "persistent": true
  17. },
  18. "page_action": {
  19. "default_icon": "icons/icon19.png",
  20. "default_title": "page action demo",
  21. "default_popup": "src/page_action/page_action.html"
  22. },
  23. "permissions": [
  24. "contentSettings",
  25. "notifications",
  26. "tabs",
  27. "https://mywebsite.com/*"
  28. ],
  29. "content_scripts": [
  30. {
  31. "matches": [
  32. "https://www.mywebsite.com/*"
  33. ],
  34. "js": [
  35. "src/inject/inject.js",
  36. "jquery.min.js"
  37. ]
  38. }
  39. ]
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement