Pinterest Image Downloader
Adds download button to each Pinterest image
ما هو Pinterest Image Downloader؟
Pinterest Image Downloader هو إضافة Chrome تم تطويرها بواسطة Vanyo Vanev، والميزة الرئيسية لها هي "Adds download button to each Pinterest image".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Pinterest Image Downloader
قم بتنزيل ملفات الامتداد Pinterest Image Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension makes easy to download Pinterest images. The extenstion will look up for the highest available size of the image (the original size) and add a download button at the left top angle of each pin.
معلومات أساسية عن التمديد
الاسم | |
ID | elnfnoljjefjnldjoilgomncnccjbgaa |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/pinterest-image-downloade/elnfnoljjefjnldjoilgomncnccjbgaa |
الوصف | Adds download button to each Pinterest image |
حجم الملف | 55.9 KB |
عدد التثبيتات | 8,000 |
النسخة الحالية | 1.3 |
آخر تحديث | 2020-10-26 |
تاريخ النشر | 2020-10-03 |
تقييم | 2.68/5 مجموع تقييمات 19 |
المطور | Vanyo Vanev |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pinterest Image Downloader", "short_name": "Pin Downloader", "version": "1.3", "description": "Adds download button to each Pinterest image", "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "app.js" ], "persistent": true }, "browser_action": { "default_popup": "background.html" }, "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.pinterest.com\/*" ], "js": [ "jquery-3.5.1.min.js", "downloader.js" ], "run_at": "document_end", "css": [ "downloader.css" ] } ], "manifest_version": 2 } |