mangobay

Manifest.json

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