Slides.com Companion

Chrome/Edge extension that aims to add a few missing features (free) to Slides.com presentations.

Slides.com Companion란 무엇입니까?

Slides.com Companion은(는) Leica Florian에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome/Edge extension that aims to add a few missing features (free) to Slides.com presentations."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Slides.com Companion 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Currently allows downloading as PDF any slides.com presentation.

Fixes
- Bug when opening the print window due to updates on slides.com

How to use:
- Navigate to the desired presentation.
- In the top right corner of the page will appear a toolbar. Click on it and then on the "Print" icon
- The page will reload and the print window will appear.
- Now just print it as PDF                    

확장 프로그램 기본 정보

이름 Slides.com Companion Slides.com Companion
ID bciknjamldhnbbckmgbchmkdcalngnco
공식 URL https://chromewebstore.google.com/detail/slidescom-companion/bciknjamldhnbbckmgbchmkdcalngnco
설명 Chrome/Edge extension that aims to add a few missing features (free) to Slides.com presentations.
파일 크기 775 KB
설치 횟수 663
현재 버전 1.3.5
최근 업데이트 2023-12-23
출시 날짜 2021-10-15
평점 4.00/5 총 4 개의 평점
개발자 Leica Florian
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/leicaflorian/slides_com_companion
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Slides.com Companion",
    "manifest_version": 3,
    "version": "1.3.5",
    "description": "Chrome\/Edge extension that aims to add a few missing features (free) to Slides.com presentations.",
    "icons": {
        "16": "assets\/icons\/16x16.png",
        "32": "assets\/icons\/32x32.png",
        "72": "assets\/icons\/72x72.png",
        "96": "assets\/icons\/96x96.png",
        "128": "assets\/icons\/128x128.png"
    },
    "action": {
        "default_icon": {
            "16": "assets\/icons\/16x16.png",
            "32": "assets\/icons\/32x32.png"
        },
        "default_popup": "popup\/index.html",
        "default_title": "Fai click per aprire"
    },
    "content_scripts": [
        {
            "js": [
                "content\/index.js"
            ],
            "css": [
                "injectable\/index.css"
            ],
            "matches": [
                "*:\/\/slides.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background\/index.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/icons\/*.png",
                "assets\/options\/toggle-toolbar-overlay.gif",
                "injectable\/index.js"
            ],
            "matches": [
                "https:\/\/slides.com\/*"
            ],
            "use_dynamic_url": true
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/slides.com\/*"
    ]
}