URL Alias

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

What is URL Alias?

URL Alias is a Chrome extension developed by https://goel.io, and its main feature is "Set URL aliases ('m/' goes to 'mail.google.com')".

Extension Screenshots

screenshot

Download URL Alias Extension CRX File

Download URL Alias extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name URL Alias URL Alias
ID nelckmdlallhkgniidbfafekeldjnakb
Official URL https://chromewebstore.google.com/detail/url-alias/nelckmdlallhkgniidbfafekeldjnakb
Description Set URL aliases ('m/' goes to 'mail.google.com')
File Size 22.55 KB
Installation Count 1,639
Current Version 0.0.1
Last Updated 2015-08-27
Publish Date 2015-08-26
Rating 3.50/5 Total 10 Ratings
Developer https://goel.io
Payment Type free
Extension Website https://github.com/karan/chrome-url-alias
Help Page URL https://github.com/karan/chrome-url-alias/issues
Supported Languages 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"
}