External Application Launcher

Run any external application with custom arguments from the browser toolbar or context menu to send links, text and more

External Application Launcher क्या है?

External Application Launcher yokris.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Run any external application with custom arguments from the browser toolbar or context menu to send links, text and more"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में External Application Launcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        The "External Application Launcher" extension enables you to define a toolbar button or several context menu items to execute external executables right from your browser. It extracts arguments from the current web page and passes them as command-line arguments of your choice to the external application.

Use Cases:
  - You can send the current page to another browser
  - You can send selected text to a text editor
  - You can open your external email client and send selected text to it
  - You send download links to an external download manager!
  - You can directly send image URLs to a photo editor of your choice
  - You can browse links with specified patterns with an external application

Notes:
1. A minimal native client is required for this extension to execute native commands. The native client uses the official NodeJS executable.
2. The native client is only available for Windows, Mac, and Linux operating systems.

Usage Preview:
https://www.youtube.com/watch?v=sTOHWbX7dKU&feature=emb_title

Installtion Video tutorial:
Windows: https://www.youtube.com/watch?v=18jAqTXBiZA
Linux and Mac: https://www.youtube.com/watch?v=bB4Bj_APg4g                    

एक्सटेंशन की मूल जानकारी

नाम External Application Launcher External Application Launcher
ID bifmfjgpgndemajpeeoiopbeilbaifdo
आधिकारिक URL https://chromewebstore.google.com/detail/external-application-laun/bifmfjgpgndemajpeeoiopbeilbaifdo
विवरण Run any external application with custom arguments from the browser toolbar or context menu to send links, text and more
फ़ाइल का आकार 156 KB
स्थापना संख्या 5,273
वर्तमान संस्करण 0.5.3
अंतिम अपडेट 2023-03-06
प्रकाशन तिथि 2020-06-02
रेटिंग 4.24/5 कुल 42 रेटिंग्स
डेवलपर yokris.dev
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://webextension.org/listing/external-application-button.html
सहायता पृष्ठ URL https://webextension.org/listing/external-application-button.html
गोपनीयता नीति पृष्ठ URL https://add0n.com/policies/yokris.dev.txt
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.5.3",
    "name": "External Application Launcher",
    "description": "Run any external application with custom arguments from the browser toolbar or context menu to send links, text and more",
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus",
        "nativeMessaging",
        "downloads",
        "notifications",
        "scripting"
    ],
    "optional_permissions": [
        "declarativeNetRequestWithHostAccess"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/external-application-button.html",
    "background": {
        "service_worker": "worker.js"
    },
    "offline_enabled": true,
    "options_ui": {
        "page": "data\/options\/index.html",
        "open_in_tab": true
    },
    "action": [],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "data\/redirect\/index.html"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "commands": {
        "_execute_action": []
    }
}