Get file path

Get the file path for the specified sites.

Τι είναι το Get file path;

Το Get file path είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον R.A. Spruyt, και η κύρια λειτουργία του είναι "Get the file path for the specified sites.".

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

screenshot

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

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

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

                        Get the file path for websites based on specified rules.
This extension allows you to set up rules so that you can easily find the file of the current page/frame on your hard drive.

Example:
Say your have the following rule:
Name: 'localhost'
Url: 'https://localhost/yourPath/'
Directory: 'c:\mywebsites\yourPath'

Now if you visit any site on localhost you will have an extra option in your context menu, this will copy a file path to your clipboard based on the rule.
So 'http://localhost/yourPath/anotherfolder/thepage.html' will return 'c:\mywebsites\yourPath\anotherfolder\thepage.html'.

Allowing you to open the file quickly in your favorite editor.
https://github.com/Riuujin/get-file-path-chrome-extension

New permissions in 1.1.0:
Due to api limitations, a script needs to be injected into the current page to copy the url to clipboard. It will not be used for anything else.

Recent changes:
1.1.3 - Fixed bugs.
1.1.4 - Fixed bugs, should fix the bug where the path is not copied to clipboard correctly.
1.1.5 - Fixed not working the first time, occurred every time the extension was not used for 30 seconds or so.
1.1.6 - Added fallback to for when clipboard api is not available
1.1.7 - Security updates.                    

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

Όνομα Get file path Get file path
ID ggoohhjefaikbncimfcekpbhgggdnidc
Επίσημο URL https://chromewebstore.google.com/detail/get-file-path/ggoohhjefaikbncimfcekpbhgggdnidc
Περιγραφή Get the file path for the specified sites.
Μέγεθος Αρχείου 128 KB
Αριθμός Εγκαταστάσεων 549
Τρέχουσα Έκδοση 1.1.7
Τελευταία Ενημέρωση 2023-03-16
Ημερομηνία Δημοσίευσης 2019-06-14
Αξιολόγηση 4.33/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής R.A. Spruyt
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Get file path",
    "description": "Get the file path for the specified sites.",
    "version": "1.1.7",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "options_page": "settings.html",
    "permissions": [
        "scripting",
        "clipboardWrite",
        "contextMenus",
        "storage",
        "notifications",
        "activeTab"
    ]
}