M-Files for Chrome

M-Files for Chrome ensures optimal M-Files user experience for Google Chrome.

M-Files for Chrome란 무엇입니까?

M-Files for Chrome은(는) M-Files에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "M-Files for Chrome ensures optimal M-Files user experience for Google Chrome."입니다.

확장 프로그램 스크린샷

screenshot

M-Files for Chrome 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        M-Files for Chrome makes editing documents more effortless by allowing you to check them out for editing as well as to check them back in once you are done.
 
M-Files for Chrome is supported both for Windows and macOS users.
 
Note: It is advised to clear the cache of your Google Chrome browser and reinstall the M-Files for Chrome extension, if the yellow ribbon remains in your M-Files Web or you are having trouble updating the extension.                    

확장 프로그램 기본 정보

이름 M-Files for Chrome M-Files for Chrome
ID lapmgejioldofnecdomcdgblbiffefhb
공식 URL https://chromewebstore.google.com/detail/m-files-for-chrome/lapmgejioldofnecdomcdgblbiffefhb
설명 M-Files for Chrome ensures optimal M-Files user experience for Google Chrome.
파일 크기 335 KB
설치 횟수 99,170
현재 버전 2.1.1
최근 업데이트 2024-03-01
출시 날짜 2020-02-22
평점 3.22/5 총 27 개의 평점
개발자 M-Files
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://m-files.force.com/s/article/mfiles-ka-246925
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "M-Files for Chrome",
    "version": "2.1.1",
    "manifest_version": 3,
    "incognito": "split",
    "description": "M-Files for Chrome ensures optimal M-Files user experience for Google Chrome.",
    "icons": {
        "128": "m-files_icon.png"
    },
    "options_page": "options.html",
    "homepage_url": "http:\/\/www.m-files.com",
    "permissions": [
        "notifications",
        "nativeMessaging",
        "background",
        "cookies",
        "storage",
        "scripting",
        "activeTab",
        "alarms"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "main.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscripts\/page.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "script.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}