Slides.com Companion
Chrome/Edge extension that aims to add a few missing features (free) to Slides.com presentations.
Vad är Slides.com Companion?
Slides.com Companion är en Chrome-tillägg utvecklad av Leica Florian, och dess huvudfunktion är "Chrome/Edge extension that aims to add a few missing features (free) to Slides.com presentations.".
Tilläggsskärmbilder
Ladda ner Slides.com Companion-förlängningens CRX-fil
Ladda ner Slides.com Companion-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
                        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                     Grundläggande Information om Tillägg
| Namn |   |  
| ID | bciknjamldhnbbckmgbchmkdcalngnco | 
| Officiell webbadress | https://chromewebstore.google.com/detail/slidescom-companion/bciknjamldhnbbckmgbchmkdcalngnco | 
| Beskrivning | Chrome/Edge extension that aims to add a few missing features (free) to Slides.com presentations. | 
| Filstorlek | 775 KB | 
| Antal Installationer | 663 | 
| Aktuell Version | 1.3.5 | 
| Senast Uppdaterad | 2023-12-23 | 
| Publiceringsdatum | 2021-10-15 | 
| Betyg | 4.00/5 Totalt 4 Betyg | 
| Utvecklare | Leica Florian | 
| E-post | [email protected] | 
| Betalningssätt | free | 
| Tilläggswebbplats | https://github.com/leicaflorian/slides_com_companion | 
| Stödda Språk | 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\/*"
    ]
}  |  |