Simple Print
Convert web articles into printable PDFs
ما هو Simple Print؟
Simple Print هو إضافة Chrome تم تطويرها بواسطة https://fivefilters.org، والميزة الرئيسية لها هي "Convert web articles into printable PDFs".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Simple Print
قم بتنزيل ملفات الامتداد Simple Print بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
معلومات أساسية عن التمديد
| الاسم | |
| ID | nalmbmopkipfhijmcncelapgbkgoligf |
| عنوان URL الرسمي | 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/ |
| عنوان صفحة المساعدة | http://help.fivefilters.org |
| عنوان صفحة سياسة الخصوصية | 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
}
} | |