Guest User

Untitled

a guest
Sep 12th, 2022
538
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. {
  2. "manifest_version": 2,
  3. "name": "Download video & audio",
  4. "version": "2.0.13",
  5. "default_locale": "en",
  6. "description": "__MSG_appDescription__",
  7. "icons": {
  8. "128": "images/savior_logo.png",
  9. "48": "images/action_cc.png"
  10. },
  11. "background": {
  12. "page": "background.html"
  13. },
  14. "minimum_chrome_version": "48",
  15. "content_scripts": [
  16. {
  17. "run_at": "document_idle",
  18. "all_frames": true,
  19. "matches": [
  20. "<all_urls>"
  21. ],
  22. "js": [
  23. "common.js",
  24. "content-script.js"
  25. ],
  26. "exclude_matches": [
  27. "http://coccoc.com/webhp*",
  28. "https://coccoc.com/webhp*"
  29. ]
  30. }
  31. ],
  32. "web_accessible_resources": [
  33. "css/content-script.css",
  34. "images/*.*",
  35. "features.json"
  36. ],
  37. "externally_connectable": {
  38. "matches": [
  39. "https://*.coccoc.com/*",
  40. "http://*.coccoc.com/*",
  41. "http://localhost/*"
  42. ]
  43. },
  44. "options_ui": {
  45. "page": "options.html",
  46. "chrome_style": false
  47. },
  48. "permissions": [
  49. "tabs",
  50. "webRequest",
  51. "webRequestBlocking",
  52. "webNavigation",
  53. "metricsPrivate",
  54. "downloads",
  55. "downloads.open",
  56. "storage",
  57. "http://*/*",
  58. "https://*/*",
  59. "cookies",
  60. "coccocPrivate"
  61. ],
  62. "page_action": {
  63. "default_icon": "images/savior_logo.png",
  64. "default_title": "__MSG_page_action_title__",
  65. "default_popup": "popup.html"
  66. },
  67. "update_url": "https://browser.coccoc.com/service/update2/crx"
  68. }
Advertisement
Add Comment
Please, Sign In to add comment