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文件

下載URL Alias擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
}