Google Full Image Opener
After clicking an image from search results, use the context menu (right-click) to view the current image.
ما هو Google Full Image Opener؟
Google Full Image Opener هو إضافة Chrome تم تطويرها بواسطة Arafat Husayn، والميزة الرئيسية لها هي "After clicking an image from search results, use the context menu (right-click) to view the current image.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Google Full Image Opener
قم بتنزيل ملفات الامتداد Google Full Image Opener بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
It brings the original image link opening back on new Google Images website. How to use: After clicking an image from search results, use the context menu (right-click) to view the current image in a new tab.
معلومات أساسية عن التمديد
الاسم | |
ID | beojccknfoajfebcpijalgejjpbdipcb |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/google-full-image-opener/beojccknfoajfebcpijalgejjpbdipcb |
الوصف | After clicking an image from search results, use the context menu (right-click) to view the current image. |
حجم الملف | 39.81 KB |
عدد التثبيتات | 78 |
النسخة الحالية | 2.0 |
آخر تحديث | 2020-08-15 |
تاريخ النشر | 2020-02-05 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Arafat Husayn |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | https://github.com/arafathusayn/vanish-ads/blob/master/PRIVACY.md |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Full Image Opener", "short_name": "google-full-image-opener", "description": "After clicking an image from search results, use the context menu (right-click) to view the current image.", "version": "2.0", "permissions": [ "contextMenus", "storage", "tabs", "https:\/\/www.google.com\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "icons": { "16": "icon16.png", "128": "icon128.png" } } |