Projector

A Projectorsoft web extension for website guides.

¿Qué es Projector?

Projector es una extensión de Chrome desarrollada por https://projectorsoft.com, y su función principal es "A Projectorsoft web extension for website guides.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Projector

Descarga archivos de extensión Projector en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Projector Projector
ID hcdlddfhfgjiedbcpijjoioebgpkeobe
URL Oficial https://chromewebstore.google.com/detail/projector/hcdlddfhfgjiedbcpijjoioebgpkeobe
Descripción A Projectorsoft web extension for website guides.
Tamaño del Archivo 381 KB
Cantidad de Instalaciones 107
Versión Actual 4.1.3
Última Actualización 2024-02-13
Fecha de Publicación 2021-06-03
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador https://projectorsoft.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://projectorsoft.com/
URL de la Página de Política de Privacidad https://projectorsoft.com/privacy-policy
Idiomas Soportados 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"
    }
}