Firefox Addon
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

44 行
1.1KB

  1. {
  2. "manifest_version": 2,
  3. "name": "Biukop Secure Internet",
  4. "version": "1.2.4",
  5. "description": "Enforced Security communication through professional network.",
  6. "icons": {
  7. "48": "icons/lock48.png",
  8. "96": "icons/lock96.png"
  9. },
  10. "permissions": [
  11. "storage",
  12. "proxy",
  13. "<all_urls>",
  14. "webRequest",
  15. "webRequestBlocking"
  16. ],
  17. "browser_action": {
  18. "browser_style": true,
  19. "default_icon": "icons/lock48.png",
  20. "default_title": "Secure Channel - Biukop"
  21. },
  22. "commands": {
  23. "_execute_browser_action": {
  24. "suggested_key": {
  25. "default": "Ctrl+Shift+Y"
  26. },
  27. "description": "Enable/Disable Secure Connection"
  28. }
  29. },
  30. "background": {
  31. "scripts": [
  32. "background.js"
  33. ]
  34. },
  35. "options_ui": {
  36. "page": "settings.html",
  37. "browser_style": true
  38. },
  39. "applications": {
  40. "gecko": {
  41. "strict_min_version": "68.0"
  42. }
  43. }
  44. }