URL Alias

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

Apa itu URL Alias?

URL Alias adalah ekstensi Chrome yang dikembangkan oleh https://goel.io, dan fitur utamanya adalah "Set URL aliases ('m/' goes to 'mail.google.com')".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi URL Alias

Unduh file ekstensi URL Alias dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama URL Alias URL Alias
ID nelckmdlallhkgniidbfafekeldjnakb
URL Resmi https://chromewebstore.google.com/detail/url-alias/nelckmdlallhkgniidbfafekeldjnakb
Deskripsi Set URL aliases ('m/' goes to 'mail.google.com')
Ukuran File 22.55 KB
Jumlah Instalasi 1,639
Versi Saat Ini 0.0.1
Terakhir Diperbarui 2015-08-27
Tanggal Publikasi 2015-08-26
Penilaian 3.50/5 Total 10 Penilaian
Pengembang https://goel.io
Tipe Pembayaran free
Situs Ekstensi https://github.com/karan/chrome-url-alias
URL Halaman Bantuan https://github.com/karan/chrome-url-alias/issues
Bahasa yang Didukung 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"
}