YouTube PDF Maker
YouTube PDF Maker is a YouTube PDF converter that captures specific scenes from YouTube videos and converts them to PDF.
什麼是YouTube PDF Maker?
YouTube PDF Maker是由PinnacleQuant開發的Chrome擴展程式,該擴展的主要功能是“YouTube PDF Maker is a YouTube PDF converter that captures specific scenes from YouTube videos and converts them to PDF.”。
擴展截圖
下載YouTube PDF Maker擴展crx文件
下載YouTube PDF Maker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Discover the power of YouTube PDF Maker, the free Chrome extension that allows you to capture and convert specific scenes from YouTube videos into high-quality PDFs. It's an indispensable tool for educators, researchers, or anyone in need of preserving video content in a static format. With this extension, you can easily create PDF snapshots of your favorite video moments, compile visual materials for academic or professional presentations, and share content-rich documents without any cost. Embrace the simplicity of turning dynamic videos into printable documents with 'YouTube PDF Maker'. 擴展基本資訊
| 名稱 | |
| ID | dnibiobdnjoeoekipkfnegjmghdlpkkm |
| 官方網址 | https://chromewebstore.google.com/detail/youtube-pdf-maker/dnibiobdnjoeoekipkfnegjmghdlpkkm |
| 簡介 | YouTube PDF Maker is a YouTube PDF converter that captures specific scenes from YouTube videos and converts them to PDF. |
| 檔案大小 | 161 KB |
| 安裝次數 | 1,004 |
| 目前版本 | 1.01 |
| 更新時間 | 2023-12-13 |
| 上架時間 | 2023-12-12 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | PinnacleQuant |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://PinnacleQuant.com |
| 說明頁面URL | https://PinnacleQuant.com |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouTube PDF Maker",
"version": "1.01",
"description": "YouTube PDF Maker is a YouTube PDF converter that captures specific scenes from YouTube videos and converts them to PDF.",
"permissions": [
"downloads",
"scripting"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"jspdf.min.js",
"content.js"
],
"run_at": "document_start"
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"action": {
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}
} | |