URL Rewriter

Rewrite URLs using custom rules.

URL Rewriter란 무엇입니까?

URL Rewriter은(는) John Ahlgren에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Rewrite URLs using custom rules."입니다.

확장 프로그램 스크린샷

screenshot

URL Rewriter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Rewrite omnibox strings into desired URLs.

Configure the rewrite rules you'd like in the extention options. Rules are of the form:

regex_with_capturing_groups --> some_url_with_%s1_and_%s2

Where %s1 and %s2 are the first and second capture groups, respectively.

For example, the following rules may be useful:

# Fallback: grab first URL and use it
.*(https?://[^\s]+).* --> %s1
.*(www\.[^\s]+).* --> %s1
.*(www\d+\.[^\s]+).* --> %s1
(.*) --> https://www.google.com/search?q=%s1

The first identifies a url starting with http and will go to that url.
The second identifies urls with www.
The third identifies urls such as www2, www3, etc
The fourth rule falls back on a google search for the entire string.                    

확장 프로그램 기본 정보

이름 URL Rewriter URL Rewriter
ID khncccgpokiedblbaahpfchghohlahje
공식 URL https://chromewebstore.google.com/detail/url-rewriter/khncccgpokiedblbaahpfchghohlahje
설명 Rewrite URLs using custom rules.
파일 크기 11.3 KB
설치 횟수 79
현재 버전 2.1
최근 업데이트 2022-12-30
출시 날짜 2022-04-19
평점 1.00/5 총 1 개의 평점
개발자 John Ahlgren
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "background": {
        "service_worker": "background.js"
    },
    "description": "Rewrite URLs using custom rules.",
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "icons": {
        "128": "icons8-Edit-128.png",
        "16": "icons8-Edit-16.png",
        "48": "icons8-Edit-48.png"
    },
    "manifest_version": 3,
    "name": "URL Rewriter",
    "omnibox": {
        "keyword": "j"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.1"
}