You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
2.4 KiB

10 years ago
10 years ago
10 years ago
  1. {
  2. "manifest_version": 2,
  3. "name": "__MSG_extName__",
  4. "short_name": "µMatrix",
  5. "version": "0.8.1.0",
  6. "description": "__MSG_extShortDesc__",
  7. "icons": {
  8. "16": "icon_16.png",
  9. "128": "icon_128.png"
  10. },
  11. "browser_action": {
  12. "default_icon": {
  13. "19": "img/browsericons/icon19.png"
  14. },
  15. "default_title": "__MSG_extName__",
  16. "default_popup": "popup.html"
  17. },
  18. "author": "Raymond Hill",
  19. "background": {
  20. "page": "background.html"
  21. },
  22. "commands": {
  23. "revert-all": {
  24. "description": "__MSG_commandRevertAll__",
  25. "suggested_key": {
  26. "default": "Alt+Q",
  27. "mac": "Command+Shift+Q"
  28. }
  29. },
  30. "whitelist-all": {
  31. "description": "__MSG_commandWhitelistAll__",
  32. "suggested_key": {
  33. "default": "Alt+A",
  34. "mac": "Command+Shift+A"
  35. }
  36. },
  37. "whitelist-page-domain": {
  38. "description": "__MSG_commandWhitelistPageDomain__",
  39. "suggested_key": {
  40. "default": "Alt+W",
  41. "mac": "Command+Shift+W"
  42. }
  43. },
  44. "open-dashboard": {
  45. "description": "__MSG_commandOpenDashboard__",
  46. "suggested_key": {
  47. "default": "Alt+S",
  48. "mac": "Command+Shift+S"
  49. }
  50. }
  51. },
  52. "content_scripts": [
  53. {
  54. "matches": ["http://*/*", "https://*/*"],
  55. "js": ["js/contentscript-start.js"],
  56. "run_at": "document_start",
  57. "all_frames": true
  58. },
  59. {
  60. "matches": ["http://*/*", "https://*/*"],
  61. "js": ["js/contentscript-end.js"],
  62. "run_at": "document_end",
  63. "all_frames": true
  64. }
  65. ],
  66. "default_locale": "en",
  67. "homepage_url": "https://github.com/gorhill/uMatrix/wiki",
  68. "minimum_chrome_version": "22.0",
  69. "options_page": "dashboard.html",
  70. "permissions": [
  71. "browsingData",
  72. "contentSettings",
  73. "cookies",
  74. "downloads",
  75. "storage",
  76. "tabs",
  77. "unlimitedStorage",
  78. "webNavigation",
  79. "webRequest",
  80. "webRequestBlocking",
  81. "http://*/*",
  82. "https://*/*"
  83. ],
  84. "web_accessible_resources": [
  85. "css/fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf",
  86. "css/noop.css"
  87. ]
  88. }