Google Full Image Opener
After clicking an image from search results, use the context menu (right-click) to view the current image.
Apa itu Google Full Image Opener?
Google Full Image Opener adalah ekstensi Chrome yang dikembangkan oleh Arafat Husayn, dan fitur utamanya adalah "After clicking an image from search results, use the context menu (right-click) to view the current image.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Google Full Image Opener
Unduh file ekstensi Google Full Image Opener dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | beojccknfoajfebcpijalgejjpbdipcb |
URL Resmi | https://chrome.google.com/webstore/detail/google-full-image-opener/beojccknfoajfebcpijalgejjpbdipcb |
Deskripsi | After clicking an image from search results, use the context menu (right-click) to view the current image. |
Ukuran File | 39.81 KB |
Jumlah Instalasi | 78 |
Versi Saat Ini | 2.0 |
Terakhir Diperbarui | 2020-08-15 |
Tanggal Publikasi | 2020-02-05 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | Arafat Husayn |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://github.com/arafathusayn/vanish-ads/blob/master/PRIVACY.md |
Bahasa yang Didukung | 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" } } |