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. 擴展基本資訊
| 名稱 | |
| ID | diklkehamgifnoikknopgieldonffjfk |
| 官方網址 | 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"
}
} | |