MultCloud Save - Save Webpage as PDF
Save webpages in Chrome as PDF or images and save to the cloud or local.
MultCloud Save - Save Webpage as PDFとは何ですか?
MultCloud Save - Save Webpage as PDFはmultcloud.comによって開発されたChromeの拡張機能で、その主な機能は「Save webpages in Chrome as PDF or images and save to the cloud or local.」です。
拡張機能のスクリーンショット
MultCloud Save - Save Webpage as PDF拡張機能のCRXファイルをダウンロード
MultCloud Save - Save Webpage as PDF拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The extension enables you to easily convert webpages as images or PDF, and save them to cloud or local storage. Moreover, you can even select a specific folder (in cloud or local) where the file should be saved.
With the extension, you can:
* Convert webpage content into PDF or images for easy offline read anywhere and anytime you want.
* Save image files (opened by Chrome) with a few clicks directly to your cloud drive.
* Download important documents from the browser to your local or cloud storage.
Key Features:
* Simple interface makes it easy for anyone to convert website to PDF.
* High quality conversion, convert web page content to PDF without distortion.
* Support converting website as PDF without header and footers.
Website: https://www.multcloud.com
Facebook: http://www.facebook.com/multcloud
Twitter: https://twitter.com/multcloud
Customer support: [email protected] 拡張機能の基本情報
| 名前 | |
| ID | cnlaohencefcfmblbcphhmfcehekfnik |
| 公式URL | https://chromewebstore.google.com/detail/multcloud-save-save-webpa/cnlaohencefcfmblbcphhmfcehekfnik |
| 説明 | Save webpages in Chrome as PDF or images and save to the cloud or local. |
| ファイルサイズ | 978 KB |
| インストール数 | 64 |
| 現在のバージョン | 1.1.0 |
| 最終更新日 | 2024-02-29 |
| 公開日 | 2024-02-02 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | multcloud.com |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://www.multcloud.com/ |
| ヘルプページのURL | https://www.multcloud.com/support.html |
| プライバシーポリシーページのURL | https://multcloud.com/policy |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "MultCloud Save - Save Webpage as PDF",
"description": "Save webpages in Chrome as PDF or images and save to the cloud or local. ",
"version": "1.1.0",
"manifest_version": 3,
"permissions": [
"activeTab",
"tabs",
"scripting",
"debugger",
"contextMenus",
"windows",
"cookies",
"notifications",
"storage"
],
"host_permissions": [
"*:\/\/*.multcloud.com\/"
],
"externally_connectable": {
"matches": [
"https:\/\/www.multcloud.com\/*"
]
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.multcloud.com\/*"
],
"js": [
"jquery.min.js",
".\/auto-login.js"
],
"run_at": "document_start",
"persistent": true
}
],
"icons": {
"16": "\/logo.png",
"32": "\/logo.png",
"48": "\/logo.png",
"128": "\/logo.png"
},
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "\/logo.png",
"32": "\/logo.png",
"48": "\/logo.png",
"128": "\/logo.png"
}
}
} | |