Simple Print
Convert web articles into printable PDFs
什麼是Simple Print?
Simple Print是由https://fivefilters.org開發的Chrome擴展程式,該擴展的主要功能是“Convert web articles into printable PDFs”。
擴展截圖
下載Simple Print擴展crx文件
下載Simple Print擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
擴展基本資訊
| 名稱 | |
| ID | nalmbmopkipfhijmcncelapgbkgoligf |
| 官方網址 | https://chromewebstore.google.com/detail/simple-print/nalmbmopkipfhijmcncelapgbkgoligf |
| 簡介 | Convert web articles into printable PDFs |
| 檔案大小 | 9.18 KB |
| 安裝次數 | 2,603 |
| 目前版本 | 1.2 |
| 更新時間 | 2018-09-04 |
| 上架時間 | 2018-09-04 |
| 評分 | 4.17/5 共 6 次評分 |
| 開發者 | https://fivefilters.org |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://pdf.fivefilters.org/simple-print/ |
| 說明頁面URL | http://help.fivefilters.org |
| 隱私政策頁面URL | https://help.fivefilters.org/push-to-kindle/privacy.html |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Simple Print",
"version": "1.2",
"manifest_version": 2,
"description": "Convert web articles into printable PDFs",
"homepage_url": "https:\/\/pdf.fivefilters.org\/simple-print\/",
"browser_action": {
"default_title": "Simple Print",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"activeTab"
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+P"
}
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
} | |