glink

Create aliases for URLs

glink क्या है?

glink J Luo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Create aliases for URLs"।

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

screenshot
screenshot

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

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

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

                        Type alias in address bar and hit Enter, then you will be redirected to the corresponding URL.

Use popup to quickly create rules (alias -> URL).

Open the "Options" page to add, delete, and view all existing rules.

Example:

1. type 'c/' to go to Google Calendar
2. type 'y/' to go to Youtube
3. type 'xxx/yyy' to go to certain page

You can customize all these rules.

Recommendation:

1. Use one-character aliases for the most frequent pages. Like c/ for Google Calendar
2. Use aliases start with go/ for less frequent pages. Like go/doc-xxx for Google docs

All data are stored in Chrome and won't be shared.

Feedback is welcome. Please go to https://github.com/luoos/glink for feedback.                    

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

नाम glink glink
ID djamlokjblgcpopojpandilmhmlednie
आधिकारिक URL https://chromewebstore.google.com/detail/glink/djamlokjblgcpopojpandilmhmlednie
विवरण Create aliases for URLs
फ़ाइल का आकार 146 KB
स्थापना संख्या 3,241
वर्तमान संस्करण 0.9
अंतिम अपडेट 2020-09-07
प्रकाशन तिथि 2020-08-24
रेटिंग 2.33/5 कुल 3 रेटिंग्स
डेवलपर J Luo
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/luoos/glink
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "glink",
    "version": "0.9",
    "description": "Create aliases for URLs",
    "permissions": [
        "activeTab",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "add rule",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/glink_icon16.png",
            "24": "images\/glink_icon24.png",
            "32": "images\/glink_icon32.png",
            "48": "images\/glink_icon48.png",
            "128": "images\/glink_icon128.png"
        }
    },
    "options_page": "options.html",
    "icons": {
        "16": "images\/glink_icon16.png",
        "24": "images\/glink_icon24.png",
        "32": "images\/glink_icon32.png",
        "48": "images\/glink_icon48.png",
        "128": "images\/glink_icon128.png"
    },
    "manifest_version": 2
}