Dynamics 365 F&O Task Recorder Screenshot

Screenshot capture used for Dynamics 365 for Finance and Operations task recorder.

Cos'è Dynamics 365 F&O Task Recorder Screenshot?

Dynamics 365 F&O Task Recorder Screenshot è un'estensione di Chrome sviluppata da Ben Morgan, e la sua funzione principale è "Screenshot capture used for Dynamics 365 for Finance and Operations task recorder.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Dynamics 365 F&O Task Recorder Screenshot

Scarica i file di estensione Dynamics 365 F&O Task Recorder Screenshot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Enables use of screenshots in the Dynamics 365 for Finance and Operations task recorder.  

Microsoft provided source code and instructions to load an extension directly to the browser, but this process is not user-friendly and the source code itself is not updated to the latest Chrome development standards.  

This version allows users to easily install the extension and the code will continue to function under current Chrome development standards.                    

Informazioni di Base sull'Estensione

Nome Dynamics 365 F&O Task Recorder Screenshot Dynamics 365 F&O Task Recorder Screenshot
ID ckfadcdehbdakbkgjhoghmbdnkbiooag
URL Ufficiale https://chromewebstore.google.com/detail/dynamics-365-fo-task-reco/ckfadcdehbdakbkgjhoghmbdnkbiooag
Descrizione Screenshot capture used for Dynamics 365 for Finance and Operations task recorder.
Dimensione del File 13.25 KB
Conteggio Installazioni 6,670
Versione Corrente 2.0.0.0
Ultimo Aggiornamento 2023-08-29
Data di Pubblicazione 2022-02-02
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore Ben Morgan
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dynamics 365 F&O Task Recorder Screenshot",
    "version": "2.0.0.0",
    "description": "Screenshot capture used for Dynamics 365 for Finance and Operations task recorder.",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.dynamics.com\/*"
            ],
            "js": [
                "screenshot.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "host_permissions": [
        ""
    ],
    "manifest_version": 3
}