Download URL
Download the URL file of the current page.
Τι είναι το Download URL;
Το Download URL είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον akinoreh, και η κύρια λειτουργία του είναι "Download the URL file of the current page.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Download URL
Λήψη αρχείων επέκτασης Download URL σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
• v2.3.2 (2023-12-20): · After recent Chrome update, there was an issue with the popup window closing too quickly when the download is initiated. Instead of using a timeout (workaround), switched to the onChanged event to track the download. • v2.3.1 (2023-08-20): · After recent Chrome update, extension window seems to collapse. Explicit width is set on body. • v2.3 (2023-06-10): · Bug fix for title input. Formatting the value is throttled by 500ms. · Added buttons for removing parameters & hash. · Switched the icons to Font Awesome 6. • v2.2.1 (2023-05-23): · Bug fix for closing the extension window when the download window shows. • v2.2 (2023-05-11): · Added copy buttons for the title and the URL. Plus some minor UI adjustments. • v2.1 (2023-04-22): · Added a link to the current page. It can be dragged-and-dropped in a directory instead of downloading the file. This is faster if the download location/folder is already open. • v2.0.4 (2022-09-07): · When clicked on "Inspect popup", the extension throws an error. This might be because it's trying to operate on an empty string (title, url, etc). Empty strings are ignored now. • v2.0.3 (2022-05-18): · On macOS, when the popup closes (after clicking the download button), it also closes the download/save window. Now, there's a 5 second delay between the download and the popup close. • v2.0.2 (2022-04-19): · Auto hide/close the popup window when Download is clicked. · Added description/title to the Title label. • v2.0.1 (2022-04-17): · Live preview of URL change in Content. • v2.0.0 (2022-04-13): · Major UI update. Previously, there was no UI. Now, the user can modify the title and the URL before downloading.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Download URL |
ID | gkhcppbljnkkjjkahichmbajofmnglic |
Επίσημο URL | https://chromewebstore.google.com/detail/download-url/gkhcppbljnkkjjkahichmbajofmnglic |
Περιγραφή | Download the URL file of the current page. |
Μέγεθος Αρχείου | 15.94 KB |
Αριθμός Εγκαταστάσεων | 10,000 |
Τρέχουσα Έκδοση | 2.3.2 |
Τελευταία Ενημέρωση | 2023-12-21 |
Ημερομηνία Δημοσίευσης | 2019-12-04 |
Αξιολόγηση | 3.73/5 Συνολικά 11 Αξιολογήσεις |
Προγραμματιστής | akinoreh |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Download URL", "description": "Download the URL file of the current page.", "version": "2.3.2", "action": { "default_title": "Download URL", "default_popup": "popup\/index.html", "default_icon": { "16": "images\/fa-solid-fa-link-16.png", "48": "images\/fa-solid-fa-link-48.png", "128": "images\/fa-solid-fa-link.png" } }, "icons": { "16": "images\/fa-solid-fa-link-16.png", "48": "images\/fa-solid-fa-link-48.png", "128": "images\/fa-solid-fa-link.png" }, "permissions": [ "activeTab", "downloads" ] } |