URL Shortcut

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

URL Shortcut क्या है?

URL Shortcut https://devinrousso.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows users to create shortcuts that, when entered into the URL bar, will redirect them to the preset page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में URL Shortcut एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम URL Shortcut URL Shortcut
ID phaniiibecagmfolpbjafbcckimlgjac
आधिकारिक URL https://chromewebstore.google.com/detail/url-shortcut/phaniiibecagmfolpbjafbcckimlgjac
विवरण Allows users to create shortcuts that, when entered into the URL bar, will redirect them to the preset page.
फ़ाइल का आकार 19.48 KB
स्थापना संख्या 647
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2016-08-15
प्रकाशन तिथि 2016-08-15
रेटिंग 3.00/5 कुल 3 रेटिंग्स
डेवलपर https://devinrousso.com
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/dcrousso/URL-Shortcut/issues
समर्थित भाषाएँ 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",
        ""
    ]
}