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')」です。
拡張機能のスクリーンショット
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 拡張機能の基本情報
| 名前 | |
| 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"
} | |