Simple Print
Convert web articles into printable PDFs
What is Simple Print?
Simple Print is a Chrome extension developed by https://fivefilters.org, and its main feature is "Convert web articles into printable PDFs".
Extension Screenshots
Download Simple Print Extension CRX File
Download Simple Print extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension Basic Information
Name | Simple Print |
ID | nalmbmopkipfhijmcncelapgbkgoligf |
Official URL | https://chromewebstore.google.com/detail/simple-print/nalmbmopkipfhijmcncelapgbkgoligf |
Description | Convert web articles into printable PDFs |
File Size | 9.18 KB |
Installation Count | 2,603 |
Current Version | 1.2 |
Last Updated | 2018-09-04 |
Publish Date | 2018-09-04 |
Rating | 4.17/5 Total 6 Ratings |
Developer | https://fivefilters.org |
[email protected] | |
Payment Type | free |
Extension Website | https://pdf.fivefilters.org/simple-print/ |
Help Page URL | http://help.fivefilters.org |
Privacy Policy Page URL | https://help.fivefilters.org/push-to-kindle/privacy.html |
Supported Languages | 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 } } |