URL Alias

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

URL Aliasคืออะไร?

URL Alias เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://goel.io และคุณลักษณะหลักของมันคือ "Set URL aliases ('m/' goes to 'mail.google.com')"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย URL Alias

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
}