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 là gì?
Google Full Image Opener là một tiện ích mở rộng Chrome được phát triển bởi Arafat Husayn, và tính năng chính của nó là "After clicking an image from search results, use the context menu (right-click) to view the current image.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Google Full Image Opener
Tải xuống các tệp mở rộng Google Full Image Opener dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | beojccknfoajfebcpijalgejjpbdipcb |
URL Chính Thức | https://chrome.google.com/webstore/detail/google-full-image-opener/beojccknfoajfebcpijalgejjpbdipcb |
Mô tả | After clicking an image from search results, use the context menu (right-click) to view the current image. |
Kích Thước Tệp | 39.81 KB |
Số Lần Cài Đặt | 78 |
Phiên Bản Hiện Tại | 2.0 |
Cập Nhật Lần Cuối | 2020-08-15 |
Ngày Phát Hành | 2020-02-05 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Arafat Husayn |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://github.com/arafathusayn/vanish-ads/blob/master/PRIVACY.md |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |