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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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\/*"
]
} | |