URL Alias
Set URL aliases ('m/' goes to 'mail.google.com')
URL Alias là gì?
URL Alias là một tiện ích mở rộng Chrome được phát triển bởi https://goel.io, và tính năng chính của nó là "Set URL aliases ('m/' goes to 'mail.google.com')".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng URL Alias
Tải xuống các tệp mở rộng URL Alias dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | URL Alias |
ID | nelckmdlallhkgniidbfafekeldjnakb |
URL Chính Thức | https://chromewebstore.google.com/detail/url-alias/nelckmdlallhkgniidbfafekeldjnakb |
Mô tả | Set URL aliases ('m/' goes to 'mail.google.com') |
Kích Thước Tệp | 22.55 KB |
Số Lần Cài Đặt | 1,639 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2015-08-27 |
Ngày Phát Hành | 2015-08-26 |
Đánh Giá | 3.50/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | https://goel.io |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/karan/chrome-url-alias |
URL Trang Trợ Giúp | https://github.com/karan/chrome-url-alias/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } |