Advertisement
Guest User

manifest.json

a guest
Jun 27th, 2019
343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. {
  2. "applications": {
  3. "gecko": {
  4. "id": "visualsponline@visualsp.com",
  5. "strict_min_version": "52.0",
  6. "update_url": "https://s3.amazonaws.com/sharepoint-videos/Office365TrainingApplication/firefox-extension/update.rdf"
  7. }
  8. },
  9. "manifest_version": 2,
  10. "name": "VisualSP Training for Office 365",
  11. "version": "1.2.0.2",
  12. "homepage_url": "http://www.visualsp.com",
  13. "description": "Get the most from your Office 365 subscription. The help you need, where you need it, when you need it.",
  14. "author": "VisualSP",
  15. "icons": {
  16. "16": "images/VisualSP_16x16.png",
  17. "32": "images/VisualSP_32x32.png",
  18. "48": "images/VisualSP_48x48.png",
  19. "128": "images/VisualSP_128x128.png"
  20. },
  21. "web_accessible_resources": [
  22. "images/*.png",
  23. "css/*.css",
  24. "js/*.js"
  25. ],
  26. "permissions": [
  27. "storage"
  28. ],
  29. "externally_connectable": {
  30. "ids": [ "*" ],
  31. "matches": [ "*://visualsponline.azurewebsites.net/*", "*://visualsponline-test.azurewebsites.net/*", "*://localhost/*" ]
  32. },
  33. "content_security_policy": "default-src https://visualsponline.azurewebsites.net https://visualspapp.azurewebsites.net https://visualsponline-test.azurewebsites.net https://localhost:8080/ https://localhost:8081/ http://localhost:8080// http://localhost:8081/ 'self'; connect-src *; img-src *;",
  34. "content_scripts": [
  35. {
  36. "matches": [
  37. "<all_urls>"
  38. ],
  39. "js": [
  40. "js/bootstrap.js"
  41. ],
  42. "run_at": "document_end"
  43. }
  44. ]
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement