View Image Button
Bring back the view image button for Google image search results.
什么是View Image Button?
View Image Button是由Muyor开发的Chrome扩展程序,该扩展的主要功能是“Bring back the view image button for Google image search results.”。
扩展截图
下载View Image Button扩展crx文件
下载View Image Button扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
View Image Button (for Google™ Search) is an extension that lets you add a button to the Google image search page to view images directly. The toolbar button serves as an ON|OFF switch to quickly add or remove the button. Please note that clicking the view image button will open the image in a new tab. Moreover, this extension tries to find and open the image in the maximum available resolution (please wait for the image to completely load and render before pressing the view image button). To report bugs, please fill out the bug report form on the add-on's homepage (https://mybrowseraddon.com/view-image-button.html).
扩展基本信息
名称 | View Image Button |
ID | gllpomlmiljchdbigeahkpflkonfjiob |
官方URL | https://chromewebstore.google.com/detail/view-image-button/gllpomlmiljchdbigeahkpflkonfjiob |
简介 | Bring back the view image button for Google image search results. |
文件大小 | 27.95 KB |
安装次数 | 15,108 |
当前版本 | 0.1.5 |
更新时间 | 2023-09-11 |
上架时间 | 2020-03-24 |
评分 | 3.98/5 共46次评分 |
开发者 | Muyor |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://mybrowseraddon.com/view-image-button.html |
帮助页面URL | https://mybrowseraddon.com/view-image-button.html |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.5", "manifest_version": 3, "permissions": [ "storage" ], "name": "View Image Button", "homepage_url": "https:\/\/mybrowseraddon.com\/view-image-button.html", "description": "Bring back the view image button for Google image search results.", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "action": { "default_title": "View Image Button", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "run_at": "document_start", "include_globs": [ "*:\/\/*.google.*\/*" ], "js": [ "data\/content_script\/inject.js" ] } ], "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |