URL Alias
Set URL aliases ('m/' goes to 'mail.google.com')
Was ist URL Alias?
URL Alias ist eine Chrome-Erweiterung, die von https://goel.io entwickelt wurde, und ihr Hauptmerkmal ist "Set URL aliases ('m/' goes to 'mail.google.com')".
Erweiterungsscreenshots
URL Alias-Erweiterungs-CRX-Datei herunterladen
Laden Sie URL Alias-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | URL Alias |
ID | nelckmdlallhkgniidbfafekeldjnakb |
Offizielle URL | https://chromewebstore.google.com/detail/url-alias/nelckmdlallhkgniidbfafekeldjnakb |
Beschreibung | Set URL aliases ('m/' goes to 'mail.google.com') |
Dateigröße | 22.55 KB |
Installationsanzahl | 1,639 |
Aktuelle Version | 0.0.1 |
Letztes Update | 2015-08-27 |
Veröffentlichungsdatum | 2015-08-26 |
Bewertung | 3.50/5 Insgesamt 10 Bewertungen |
Entwickler | https://goel.io |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/karan/chrome-url-alias |
Hilfeseite URL | https://github.com/karan/chrome-url-alias/issues |
Unterstützte Sprachen | 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" } |