Paths

Find shortcuts for popular apps and websites

Τι είναι το Paths;

Το Paths είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Raphael S., και η κύρια λειτουργία του είναι "Find shortcuts for popular apps and websites".

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

screenshot
screenshot
screenshot

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

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

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

                        Key Features
⭐20+ Website and Applications Sources
⭐Easily Customizable
⭐Fast Loading
⭐Open Source

🔎Why would you use this? 
Learning shortcuts and quick commands can almost double your productivity. Paths shows you the all the available shortcuts and commands for the most popular websites and apps that you use on a daily basis.

I have also made it free and open source so if you would like to request any more features, or add them in yourself, you can check out the Github page. You can also raise issues here for me as well.
 
Using The Application 🔥
Opening Paths can be done by pressing 
⌘ Command+Shift+Y on Mac 
Ctrl+Shift+Y on Windows

/ followed by a website name will show all the shortcuts relevant to it.

You can change the shortcut by going to chrome://extensions/shortcuts in Chrome. Also, if you cannot use the command for some reason, you can also open it by pressing the app button on the top bar.

Closing the app can be done by either clicking on the background, pressing Esc or by pressing the icon on the topbar.

Support 💌
If you find the app useful and want to support me, you can do so by support me on Product Hunt, giving the repo a star on Github, or by following me on twitter. The links to all can be found on the website!

Enjoy The App 😄                    

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

Όνομα Paths Paths
ID ccedjbkjnfpmljjlchmpbholoapafhgm
Επίσημο URL https://chromewebstore.google.com/detail/paths/ccedjbkjnfpmljjlchmpbholoapafhgm
Περιγραφή Find shortcuts for popular apps and websites
Μέγεθος Αρχείου 452 KB
Αριθμός Εγκαταστάσεων 30
Τρέχουσα Έκδοση 0.0.2
Τελευταία Ενημέρωση 2022-07-19
Ημερομηνία Δημοσίευσης 2022-07-15
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Raphael S.
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/raf-underscore/paths
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/raf-underscore/paths/issues
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Paths",
    "version": "0.0.2",
    "offline_enabled": true,
    "author": "Raphael S.",
    "description": "Find shortcuts for popular apps and websites",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "icons": {
            "16": "assets\/icon16.png",
            "48": "assets\/icon32.png",
            "128": "assets\/icon128.png"
        },
        "default_title": "Open Paths"
    },
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon32.png",
        "128": "assets\/icon128.png"
    },
    "commands": {
        "open-paths": {
            "suggested_key": "Ctrl+Shift+Y",
            "description": "The command to open the Paths extension"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "libs\/jquery.js",
                "libs\/jquery-ui.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*",
                "data\/*",
                "fonts\/*",
                "content.html",
                "*.ttf"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}