Projector

A Projectorsoft web extension for website guides.

Projector란 무엇입니까?

Projector은(는) https://projectorsoft.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Projectorsoft web extension for website guides."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Projector 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The non-intrusive Projector browser extension allows organizations to create custom on-screen step-by-step guidance and training within and across web-based systems and applications, resulting in End-User independence and efficiency, without violating an organization's privacy or security.

The advancement of ERP systems is great and offers organizations multiple tools within one system, but it comes with the disadvantage of these systems becoming complicated and overwhelming to many users. The Projector browser extension is an innovative and non-intrusive solution to that problem. Organizations can create custom guides/tutorials for their unique needs without having to spend a lot of time and resources on creating and updating them.

Why should you use  Projector?
- Easy to use for system administrators and end-users
- Customizable
- Universal usage within and across various web-based systems and applications
- No limits to Guide creation
- Cost-effective, transparent and all-inclusive pricing
- Training and support included
- Non-intrusive chromium browser extension with no system access
- No data collection of any kind

Privacy Policy: https://projectorsoft.com/privacy-policy
EULA: https://projectorsoft.com/eula
Terms and Conditions: https://projectorsoft.com/terms                    

확장 프로그램 기본 정보

이름 Projector Projector
ID hcdlddfhfgjiedbcpijjoioebgpkeobe
공식 URL https://chromewebstore.google.com/detail/projector/hcdlddfhfgjiedbcpijjoioebgpkeobe
설명 A Projectorsoft web extension for website guides.
파일 크기 381 KB
설치 횟수 107
현재 버전 4.1.3
최근 업데이트 2024-02-13
출시 날짜 2021-06-03
평점 5.00/5 총 1 개의 평점
개발자 https://projectorsoft.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://projectorsoft.com/
개인정보 보호 정책 페이지 URL https://projectorsoft.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Projector",
    "version": "4.1.3",
    "description": "A Projectorsoft web extension for website guides.",
    "action": {
        "default_icon": ".\/assets\/logo.png"
    },
    "icons": {
        "16": ".\/assets\/logo.png",
        "48": ".\/assets\/logo.png",
        "128": ".\/assets\/logo.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/dist\/contentScripts\/index.global.js"
            ]
        },
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/dist\/contentScripts\/frameInjection.mjs"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/contentScripts\/style.css",
                "dist\/contentScripts\/elementSelection\/style.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "background": {
        "service_worker": ".\/dist\/background\/index.mjs"
    }
}