Firefox 브라우저 부가 기능
  • 확장 기능
  • 테마
    • Firefox용
    • 사전 및 언어 팩
    • 다른 브라우저 사이트
    • Android 부가 기능
로그인
QSwitch 미리보기

QSwitch 제작자: Olillin

Switch between pages quick!

실험적실험적
0 (리뷰 0개)0 (리뷰 0개)
사용자 없음사용자 없음
Firefox를 다운로드하고 확장 기능을 받으세요
파일 다운로드

확장 메타 데이터

정보
QSwitch is a browser extension that makes it quick and snappy for you to switch between related websites using rules written in RegEx.

To configure rules, go to the Add-ons Page and find QSwitch. Then go to the Preferences tab.

Here you can add, edit and remove rules. Let's configure a rule to go from a YouTube video to the same song on YouTube music!

The Pattern is the RegEx pattern that will be matched against your current page URL when clicking the button. For our example we will set it to:

https://(?:www\.)?youtube\.com(.*)


This matches the full URL. Note the (.*) at the end, this is a capturing group which we will be able to get the value from later. Capturing groups are made by surrounding a part of your pattern with parenthesis (). However, there are
cases when we want to create a group without capturing the content, in these cases consider using a non-capturing group which open with (?:. Above we use a non-capturing group to match the optional www. prefix.

Reminder: In RegEx dots (.) is a wildcard that will match any character so be careful to escape them by typing \. if you want a literal dot.

The Template is used to create the new URL you will be redirected to. Here we will set it to:

https://music.youtube.com$1


Note that this is not a RegEx pattern so the dots do not need to be escaped.

This is mostly just a normal URL, except for the $1 at the end. This is a parameter which will be replaced with our capturing group from before.

You can have as many capturing groups and parameters as you want. Parameters are referenced by the order they appear in the pattern, starting at 1. $0 is a special parameter which will be replaced with the entire matched URL. Literal $ can be included in your template using by escaping them with backslash like \$.

Since RegEx can be difficult to read there is also a Comment field where you can provide a descriptive comment to quickly remember what a rule does.

Now you're ready to switch between pages! I would recommend pinning the extension to the toolbar so it's easily accessible. Then when you are on any website you can click on the extension icon to switch page. Your rules will be evaluated in order until a match is found. The rule will then be applied on the URL of the page you are currently on and you will be redirected to the new page.

Exporting/importing as JSON

The rules page also supports exporting and importing rules as JSON, which can be useful for copying your rules to another computer or sharing with friends. You can find these options by clicking the Import/export button on the rules page.
0명이 0점으로 평가함
로그인하여 이 확장 기능의 평점을 남겨주세요
아직 평점이 없습니다

별점 저장됨

5
0
4
0
3
0
2
0
1
0
아직 리뷰 없음
권한 및 데이터

필수 권한:

  • 브라우저 탭에 접근

데이터 수집:

  • 개발자가 이 확장 기능은 데이터 수집이 필요하지 않다고 합니다.
더 알아보기
추가 정보
부가 기능 링크
  • 홈 페이지
  • 지원 이메일
  • Copy add-on ID
버전
1.2
크기
37.88 KB
마지막 업데이트
2달 전 (2026년 3월 2일)
관련 카테고리
  • 탭
라이선스
MIT 라이선스
버전 목록
  • 모든 버전 보기
태그
  • user scripts
모음집에 추가
이 부가 기능 신고
Mozilla 홈페이지로 이동

부가 기능

  • 소개
  • Firefox 부가 기능 블로그
  • 확장 기능 워크샵
  • 개발자 허브
  • 개발자 정책
  • 커뮤니티 블로그
  • 포럼
  • 버그 신고
  • 리뷰 지침

브라우저

  • Desktop
  • Mobile
  • Enterprise

제품

  • Browsers
  • VPN
  • Relay
  • Monitor
  • Pocket
  • Bluesky (@firefox.com)
  • Instagram (Firefox)
  • YouTube (firefoxchannel)
  • 개인 정보
  • 쿠키
  • 법률

특별한 고지가 없는 한, 본 사이트의 콘텐츠는 Commons Attribution Share-Alike License v3.0 또는 그 이후 버전에 따라 사용이 허가됩니다.