Click link than open local file directly
Can use Native Messaging to enable click local file than open it directly.
Τι είναι το Click link than open local file directly;
Το Click link than open local file directly είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "Can use Native Messaging to enable click local file than open it directly.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Click link than open local file directly
Λήψη αρχείων επέκτασης Click link than open local file directly σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension allows you to open a local file link "file://" directly (not download). You only write the manifest file, reg file and your local program on local computer. You can follow chrome development guides (https://developer.chrome.com/docs/apps/nativeMessaging/). This program is use json format to send the message to local program. Please use "message" to receive the file name and "host" to receive the host name. You can use any program language to write the local program to receive the json format send from the chrome extension.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Click link than open local file directly |
ID | njacpndhhhiledgbfffdahoecjlakpne |
Επίσημο URL | https://chromewebstore.google.com/detail/click-link-than-open-loca/njacpndhhhiledgbfffdahoecjlakpne |
Περιγραφή | Can use Native Messaging to enable click local file than open it directly. |
Μέγεθος Αρχείου | 12.93 KB |
Αριθμός Εγκαταστάσεων | 19 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2021-10-20 |
Ημερομηνία Δημοσίευσης | 2021-10-19 |
Προγραμματιστής | Unknown |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en,zh-CN,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extension_name__", "version": "1.0", "manifest_version": 3, "description": "__MSG_extension_description__", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "default_locale": "en", "icons": { "128": "icon-128.png" }, "permissions": [ "nativeMessaging" ] } |