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 |
Eメール | [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" } } |