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/Edge extension that aims to add a few missing features (free) to Slides.com presentations."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Slides.com Companion एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } |