Rapid Links

Quickly Launch Your Favorite Websites or URLs Using Keyboard Shortcuts

Τι είναι το Rapid Links;

Το Rapid Links είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Shrinath Bhosale, και η κύρια λειτουργία του είναι "Quickly Launch Your Favorite Websites or URLs Using Keyboard Shortcuts".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Rapid Links

Λήψη αρχείων επέκτασης Rapid Links σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension lets you quickly launch your favorite websites or URLs using keyboard shortcuts. The current version comes with 3 Non-Customizable Hotkeys namely 'Alt + V', 'Alt + B' and 'Alt + N' to launch URLs in one go.


*** HOW TO USE IT? ***

That's very easy. Download and Install the Extension. Click the extension icon on the top-right corner and assign your favorite websites or URLs to any of the provided 'Hotkeys'. Save the settings and it's ready.


*** PRIVACY POLICY ***

The extension requires the permission from the chrome browser to create new tabs and update current tab. It also needs to store the data, i.e, the URLs you save, locally on your computer. URLs you save aren't being transferred to any remote computers and the developer has no access to any of your data.

However, some of the actions you perform, like number of times you open the extension and number of times you press any shortcut-key to launch URL is being tracked by the analytics script to understand the user behavior and improve the extension in the future. No private data is being compromised here as well.

Note- Before Installing, the Chrome Store Says -'The extension can read your browsing history', which is a quite misleading warning and there seems to be no way for me to fix this warning. The Extension has nothing to do with your browsing history. It only saves URLs you provide locally on your computer. Launch them by creating new tab or updating the current one. And, track how many times the extension is being used.


*** SOFTWARE LICENSE ***

The software is Open Source under MIT License and is currently hosted on Github. Anyone is free to contribute, make changes and redistribute the software.
Repository link - https://github.com/ShrinathRaje/rapid-links/


*** CONTACT AND SUPPORT ***

Raise a issue on GitHub - https://github.com/ShrinathRaje/rapid-links/issues
Contact Developer - [email protected]                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Rapid Links Rapid Links
ID jjadofdeimapinbgcdhfgpfgfhealppb
Επίσημο URL https://chromewebstore.google.com/detail/rapid-links/jjadofdeimapinbgcdhfgpfgfhealppb
Περιγραφή Quickly Launch Your Favorite Websites or URLs Using Keyboard Shortcuts
Μέγεθος Αρχείου 15.14 KB
Αριθμός Εγκαταστάσεων 43
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2019-02-01
Ημερομηνία Δημοσίευσης 2019-02-01
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Shrinath Bhosale
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ShrinathRaje/rapid-links
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/ShrinathRaje/rapid-links
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Rapid Links",
    "short_name": "Rapid Links",
    "description": "Quickly Launch Your Favorite Websites or URLs Using Keyboard Shortcuts",
    "version": "1.1",
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "16": "icons\/icon16.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icons\/icon16.png",
        "default_title": "Launch URLs with keyboard shortcuts"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "commands": {
        "launchFirstUrl": {
            "suggested_key": {
                "default": "Alt+V",
                "mac": "Alt+V"
            },
            "description": "Launch the first URL stored in chrome storage on pressing ALT+V"
        },
        "launchSecondUrl": {
            "suggested_key": {
                "default": "Alt+B",
                "mac": "Alt+B"
            },
            "description": "Launch the second URL stored in chrome storage on pressing ALT+B"
        },
        "launchThirdUrl": {
            "suggested_key": {
                "default": "Alt+N",
                "mac": "Alt+N"
            },
            "description": "Launch the third URL stored in chrome storage on pressing ALT+N"
        }
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}