Translate Scanner
This extension is made by Salure for AFAS translate purposes
Translate Scannerとは何ですか?
Translate ScannerはSalure ICTによって開発されたChromeの拡張機能で、その主な機能は「This extension is made by Salure for AFAS translate purposes」です。
拡張機能のスクリーンショット
Translate Scanner拡張機能のCRXファイルをダウンロード
Translate Scanner拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The extension aims to simplify the translation process and improve its efficiency by seamlessly fetching text from the active tab's DOM, parsing it, and storing the translated text for later use. Through the utilization of activeTab, tabs, storage, and host permissions, your extension can access the necessary information from websites and present it in a user-friendly format, thus providing a smoother translation experience. Ultimately, the purpose of your extension is to enhance the translation process for users, enabling them to perform translations with ease and convenience.
拡張機能の基本情報
名前 | Translate Scanner |
ID | jpacphhdikilnebipcihgigdcoagcpei |
公式URL | https://chromewebstore.google.com/detail/translate-scanner/jpacphhdikilnebipcihgigdcoagcpei |
説明 | This extension is made by Salure for AFAS translate purposes |
ファイルサイズ | 461 KB |
インストール数 | 37 |
現在のバージョン | 2.1.2 |
最終更新日 | 2023-07-18 |
公開日 | 2023-03-19 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | Salure ICT |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | nl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Translate Scanner", "description": "This extension is made by Salure for AFAS translate purposes", "version": "2.1.2", "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "all_frames": true, "run_at": "document_end", "js": [ "content.js" ] } ], "background": { "service_worker": "service_worker.js" }, "permissions": [ "activeTab", "tabs", "storage" ], "action": { "default_icon": "icon.png", "default_popup": "index.html", "default_title": "Salure Translate" }, "content_security_policy": [] } |