Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. {
  2. "title": "Tabs Outliner overrides",
  3. "rules": [
  4. {
  5. "description": "X (Ctrl+Shift) [Only Chrome]",
  6. "manipulators": [
  7. {
  8. "from": {
  9. "key_code": "x",
  10. "modifiers": { "mandatory": ["control", "shift"]}
  11. },
  12. "to": [{
  13. "key_code": "x",
  14. "modifiers": ["control","shift"]
  15. }],
  16. "conditions": [
  17. {
  18. "type": "frontmost_application_if",
  19. "bundle_identifiers": [
  20. "^com\\.google\\.Chrome",
  21. "^com\\.google\\.Chrome-beta",
  22. "^com\\.google\\.Chrome-dev"
  23. ]
  24. }
  25. ],
  26. "type": "basic"
  27. }
  28. ]
  29. },
  30. {
  31. "description": "W (Ctrl+Shift) [Only Chrome]",
  32. "manipulators": [
  33. {
  34. "from": {
  35. "key_code": "w",
  36. "modifiers": { "mandatory": ["control", "shift"]}
  37. },
  38. "to": [{
  39. "key_code": "w",
  40. "modifiers": ["control","shift"]
  41. }],
  42. "conditions": [
  43. {
  44. "type": "frontmost_application_if",
  45. "bundle_identifiers": [
  46. "^com\\.google\\.Chrome",
  47. "^com\\.google\\.Chrome-beta",
  48. "^com\\.google\\.Chrome-dev"
  49. ]
  50. }
  51. ],
  52. "type": "basic"
  53. }
  54. ]
  55. },
  56. {
  57. "description": "Q (Ctrl+Shift) [Only Chrome]",
  58. "manipulators": [
  59. {
  60. "from": {
  61. "key_code": "q",
  62. "modifiers": { "mandatory": ["control", "shift"]}
  63. },
  64. "to": [{
  65. "key_code": "q",
  66. "modifiers": ["control","shift"]
  67. }],
  68. "conditions": [
  69. {
  70. "type": "frontmost_application_if",
  71. "bundle_identifiers": [
  72. "^com\\.google\\.Chrome",
  73. "^com\\.google\\.Chrome-beta",
  74. "^com\\.google\\.Chrome-dev"
  75. ]
  76. }
  77. ],
  78. "type": "basic"
  79. }
  80. ]
  81. }
  82. ]
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement