D365 F&O Task Recorder Screenshots and Video

D365 Finance and Operations Task Recorder Screenshots and Video Capture

D365 F&O Task Recorder Screenshots and Video란 무엇입니까?

D365 F&O Task Recorder Screenshots and Video은(는) contactdynamicstips에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "D365 Finance and Operations Task Recorder Screenshots and Video Capture"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

D365 F&O Task Recorder Screenshots and Video 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The Dynamics 365 Finance and Operations Task Recorder Screenshot and Video Capture Chrome extension allows the user to enable automatic screen capture capability that will be captured as part of the Microsoft word document export after the task recording is complete.

The extension also allows for video capture which will download as soon as the task recorder is stopped. The user can define the desired video format which includes MP4. This extension is extremely useful for documenting standard operating procedures (SOP) or training material during implementations.

*** This extension requires a license which can be purchased using the link below. The confirmation code will be emailed to you which is used as the license key.

https://dynamics-tips.com/task-recorder-screenshot-chrome-extension/

For any feedback, support, or questions please use the contact form on the link above.                    

확장 프로그램 기본 정보

이름 D365 F&O Task Recorder Screenshots and Video D365 F&O Task Recorder Screenshots and Video
ID comoajdjdhccbjchdnbiickjnpdnnmbd
공식 URL https://chromewebstore.google.com/detail/d365-fo-task-recorder-scr/comoajdjdhccbjchdnbiickjnpdnnmbd
설명 D365 Finance and Operations Task Recorder Screenshots and Video Capture
파일 크기 171 KB
설치 횟수 6,764
현재 버전 3
최근 업데이트 2022-01-24
출시 날짜 2021-06-14
평점 2.67/5 총 6 개의 평점
개발자 contactdynamicstips
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://dynamics-tips.com/task-recorder-screenshot-chrome-extension/
도움말 페이지 URL https://dynamics-tips.com/task-recorder-screenshot-chrome-extension/
개인정보 보호 정책 페이지 URL https://dynamics-tips.com/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "D365 F&O Task Recorder Screenshots and Video",
    "short_name": "D365 Finance and Operations Task Recorder Screenshots and Video Capture",
    "author": "salman tariq",
    "version": "3",
    "manifest_version": 2,
    "description": "D365 Finance and Operations Task Recorder Screenshots and Video Capture",
    "background": {
        "scripts": [
            "background\/background.common.js",
            "RecordRTC\/EBML.js",
            "background\/background.js",
            "background\/background.desktopCapture.js",
            "background\/background.tabCapture.js",
            "background\/background.badgeText.js",
            "background\/background.getUserMedia.js",
            "background\/background.messaging.js",
            "background\/background.players.js",
            "RecordRTC\/MediaStreamRecorder.js",
            "RecordRTC\/MultiStreamRecorder.js",
            "RecordRTC\/MultiStreamsMixer.js",
            "RecordRTC\/StereoAudioRecorder.js",
            "RecordRTC\/DiskStorage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.dynamics.com\/*"
            ],
            "js": [
                "background\/background.contentScript.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "images\/main-icon.png",
        "default_title": "Record Your Screen, Tab or Camera",
        "default_popup": "dropdown.html"
    },
    "icons": {
        "16": "images\/main-icon.png",
        "22": "images\/main-icon.png",
        "32": "images\/main-icon.png",
        "48": "images\/main-icon.png",
        "128": "images\/main-icon.png"
    },
    "permissions": [
        "desktopCapture",
        "storage",
        "tabs",
        "",
        "tabCapture",
        "activeTab"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/apis.google.com\/; object-src 'self'",
    "web_accessible_resources": [
        "images\/main-icon.png"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": false,
        "open_in_tab": true
    }
}