Alt Text Copy
Copy Image Alt Text By Right Clicking
什么是Alt Text Copy?
Alt Text Copy是由hskolbeck开发的Chrome扩展程序,该扩展的主要功能是“Copy Image Alt Text By Right Clicking”。
扩展截图
下载Alt Text Copy扩展crx文件
下载Alt Text Copy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds an option to the right-click menu for images to allow easy copying of alt text, if present. After installing, pages will need to be refreshed before the extension will work.
扩展基本信息
名称 | Alt Text Copy |
ID | diklkehamgifnoikknopgieldonffjfk |
官方URL | https://chromewebstore.google.com/detail/alt-text-copy/diklkehamgifnoikknopgieldonffjfk |
简介 | Copy Image Alt Text By Right Clicking |
文件大小 | 22.98 KB |
安装次数 | 601 |
当前版本 | 1.1 |
更新时间 | 2022-12-31 |
上架时间 | 2022-05-11 |
评分 | 3.33/5 共6次评分 |
开发者 | hskolbeck |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://hannah.industries |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.1", "manifest_version": 3, "default_locale": "en_US", "background": { "service_worker": "menu.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_scripts\/getClickTarget.js" ] } ], "permissions": [ "clipboardWrite", "contextMenus" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "action": { "default_icon": { "16": "images\/AltTextCopy16.png", "32": "images\/AltTextCopy32.png", "48": "images\/AltTextCopy48.png", "128": "images\/AltTextCopy128.png" } }, "icons": { "16": "images\/AltTextCopy16.png", "32": "images\/AltTextCopy32.png", "48": "images\/AltTextCopy48.png", "128": "images\/AltTextCopy128.png" } } |