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.”。
擴展截圖
下載Slides.com Companion擴展crx文件
下載Slides.com Companion擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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\/*" ] } |