Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Config not work #4051

Open
tangzhehao opened this issue Dec 9, 2024 · 1 comment
Open

Config not work #4051

tangzhehao opened this issue Dec 9, 2024 · 1 comment

Comments

@tangzhehao
Copy link

I am a newcomer, and I want to remap Cmmd+Tab to switch to next tab in Chrome.

I try to use ChatGPT to get the snippets, but not work.

{
    "description": "In Chrome, remap Command+Tab to switch to next tab",
    "manipulators": [
        {
            "conditions": [
                {
                    "bundle_identifiers": [
                        "^com.google.Chrome$",
                        "^org.chromium.Chromium$"
                    ],
                    "type": "frontmost_application_if"
                }
            ],
            "from": {
                "key_code": "tab",
                "modifiers": { "mandatory": ["command"] }
            },
            "to": [
                {
                    "key_code": "right_arrow",
                    "modifiers": ["command", "option"]
                }
            ],
            "type": "basic"
        }
    ]
}
@tekezo
Copy link
Member

tekezo commented Dec 17, 2024

This setting works fine on my end.

One possible reason it might not be working is if you're using something other than the official release version of Chrome, causing the bundle identifier to be different.
Even if you remove the conditions part, does it still fail to switch to the next tab?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants