URL Shortcut

Allows users to create shortcuts that, when entered into the URL bar, will redirect them to the preset page.

O que é URL Shortcut?

URL Shortcut é uma extensão do Chrome desenvolvida por https://devinrousso.com, e sua principal característica é "Allows users to create shortcuts that, when entered into the URL bar, will redirect them to the preset page.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão URL Shortcut

Baixe arquivos de extensão URL Shortcut no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Do you get tired of having to type in "youtube.com" when going to watch videos of cats?  Does it happen with other websites too?

If this describes you, simply download this extension and configure it via the "options" link on the Chrome Extensions page.  Simply configure the extension via its settings by adding a Regular Expression pattern that will, when any requested URL matches it, redirect the request to the given replacement.


1.0.2
 - Automatically adds an empty field if none exist

1.0.1
 - Now supports using match patterns as prefixes (http://y/watch?v=dQw4w9WgXcQ will redirect to http://youtube.com/watch?v=dQw4w9WgXcQ)
 - Optimized request matching to only those specified in settings

1.0.0
 - Created base functionality
 - Uses Regular Expressions to match each requested URL
 - Uses the Chrome Options V2 API for settings                    

Informações Básicas da Extensão

Nome URL Shortcut URL Shortcut
ID phaniiibecagmfolpbjafbcckimlgjac
URL Oficial https://chromewebstore.google.com/detail/url-shortcut/phaniiibecagmfolpbjafbcckimlgjac
Descrição Allows users to create shortcuts that, when entered into the URL bar, will redirect them to the preset page.
Tamanho do Arquivo 19.48 KB
Contagem de Instalações 647
Versão Atual 1.0.2
Última Atualização 2016-08-15
Data de Publicação 2016-08-15
Classificação 3.00/5 Total de 3 Avaliações
Desenvolvedor https://devinrousso.com
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/dcrousso/URL-Shortcut/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "version": "1.0.2",
    "default_locale": "en",
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "\/js\/background.js"
        ]
    },
    "options_ui": {
        "page": "\/html\/options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ]
}