slidecontrol

Slidecontrol - The open-source global remote solution made for everyone.

slidecontrol란 무엇입니까?

slidecontrol은(는) https://maniyt.de에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Slidecontrol - The open-source global remote solution made for everyone."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Slidecontrol is an open-source global remote solution for everyone.

It was created by two German students seeking a reliable and free system to control their presentations remotely.

We feature viewing speaker's notes for the active slide, switching slides, dark-mode by default and, of course, a real-time laserpointer to add some *pew* *pew* to your presentation.

Slidecontrol works by setting up a communication between the mobile oriented web application and a presentation opened on your computer. Every new presentation gets a code generated which then is entered on your phone. Afterwards that presentation can be controlled in real-time from anywhere.

To learn how to get started just install the extension or visit https://sc.niveri.xyz/welcome.

Slidecontrol is 100% open-source and released under the MIT License (https://github.com/m4r1vs/slidecontrol/blob/master/LICENSE). More information about the code is available at http://sc.niveri.xyz/about/code.

Our privacy policy can be viewed at https://sc.niveri.xyz/about/privacy                    

확장 프로그램 기본 정보

이름 slidecontrol slidecontrol
ID ghfjfgbiehcemjfapohnnfngcbappodg
공식 URL https://chrome.google.com/webstore/detail/slidecontrol/ghfjfgbiehcemjfapohnnfngcbappodg
설명 Slidecontrol - The open-source global remote solution made for everyone.
파일 크기 32.85 KB
설치 횟수 402
현재 버전 2.5.8
최근 업데이트 2019-08-18
출시 날짜 2019-08-18
평점 4.50/5 총 4 개의 평점
개발자 https://maniyt.de
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://slidecontrol.niveri.xyz
도움말 페이지 URL https://slidecontrol.niveri.xyz/about
개인정보 보호 정책 페이지 URL https://slidecontrol.niveri.xyz/about/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                ".\/lib\/qrcodegen.js",
                ".\/lib\/caffeine.js",
                ".\/content.min.js"
            ],
            "matches": [
                "https:\/\/docs.google.com\/presentation\/d\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/*.mn.uber.space; object-src 'self'",
    "description": "Slidecontrol - The open-source global remote solution made for everyone.",
    "icons": {
        "128": "images\/logo_128.png",
        "16": "images\/logo_16.png",
        "48": "images\/logo_48.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "notifications",
        "storage"
    ],
    "manifest_version": 2,
    "name": "slidecontrol",
    "offline_enabled": false,
    "short_name": "slidecontrol",
    "version": "2.5.8"
}