URL Alias

Set URL aliases ('m/' goes to 'mail.google.com')

URL Alias란 무엇입니까?

URL Alias은(는) https://goel.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Set URL aliases ('m/' goes to 'mail.google.com')"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        A handy Chrome extension to set URL aliases. ("m/" goes to "mail.google.com" etc)

## Features

#### Static aliases
m (Alias) -> https://mail.google.com (Redirect)

#### Dynamic aliases
You can use ### as a placeholder and anything matching that pattern will be replaced.
Example:
--- r/### (Alias) -> http://reddit.com/r/### (Redirect)

#### Aliases synced with Google Account
All settings are synced with Google and available even if you change computers.

Source: https://github.com/karan/chrome-url-alias                    

확장 프로그램 기본 정보

이름 URL Alias URL Alias
ID nelckmdlallhkgniidbfafekeldjnakb
공식 URL https://chromewebstore.google.com/detail/url-alias/nelckmdlallhkgniidbfafekeldjnakb
설명 Set URL aliases ('m/' goes to 'mail.google.com')
파일 크기 22.55 KB
설치 횟수 1,639
현재 버전 0.0.1
최근 업데이트 2015-08-27
출시 날짜 2015-08-26
평점 3.50/5 총 10 개의 평점
개발자 https://goel.io
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/karan/chrome-url-alias
도움말 페이지 URL https://github.com/karan/chrome-url-alias/issues
지원되는 언어 en
manifest.json
{
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "author": "Karan Goel",
    "content_security_policy": "script-src 'self' https:\/\/code.jquery.com https:\/\/storage.googleapis.com https:\/\/fonts.googleapis.com; object-src 'self'",
    "description": "Set URL aliases ('m\/' goes to 'mail.google.com')",
    "homepage_url": "https:\/\/github.com\/karan\/chrome-url-alias",
    "icons": {
        "128": "icon-128.png",
        "96": "icon-96.png",
        "16": "icon-16.png"
    },
    "manifest_version": 2,
    "name": "URL Alias",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "storage"
    ],
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.1"
}