MP3 Converter
Pure JavaScript MP3 converter to encode media files into MP3 format and add ID3 Tags
MP3 Converterとは何ですか?
MP3 Converterはbalvin.perrieによって開発されたChromeの拡張機能で、その主な機能は「Pure JavaScript MP3 converter to encode media files into MP3 format and add ID3 Tags」です。
拡張機能のスクリーンショット
MP3 Converter拡張機能のCRXファイルをダウンロード
MP3 Converter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension adds a button to the toolbar area which brings up the actual conversion tool. Just drop one or multiple media files (both video or audio types are supported) and wait for the extension to convert audio streams to MP3 format. After a successful conversion, files will be placed in your default download directory. You can press each item in the UI to navigate to the converted MP3 file. Conversion Process: local files -> read content -> decode -> convert remote files -> download -> decode -> convert Note that you can copy media links to the clipboard and then use the "Parse content from clipboard" option to extract media links from the clipboard. Also, it is possible to select media links in a browser tab and drop selection into the converter window. The extension will extract all the links and convert media links Notes: 1. This extension uses pure JavaScript engine to convert media files to MP3 format. There are no external dependencies. 2. This extension uses your browser's internal engine to decode media files so to be able to convert a media file to MP3 format, your browser should be able to play the media file. This means if a format is not yet supported by your browser, the extension will not be able to convert 3. You can convert from right-click context menu over links, audio and video elements too. Just press "Convert to MP3" context menu item. 4. You can stop the conversion process at any time by pressing the close button on the right side of each entry. 5. As of version 0.2.0, this extension supports a custom decoder and muxer which activates if the browser's native decoder fails. The custom decoder is based on FFmpeg project and can decode almost all possible media sources even if the media source cannot be parsed by your browser. Change Log: 0.1.3: Supporting MP3's ID3 Tags 0.1.6 Improves conversion speed
拡張機能の基本情報
名前 | MP3 Converter |
ID | flildjghnbmjppbenicihiaaadkpkika |
公式URL | https://chromewebstore.google.com/detail/mp3-converter/flildjghnbmjppbenicihiaaadkpkika |
説明 | Pure JavaScript MP3 converter to encode media files into MP3 format and add ID3 Tags |
ファイルサイズ | 3.77 MB |
インストール数 | 83,008 |
現在のバージョン | 0.3.4 |
最終更新日 | 2023-07-17 |
公開日 | 2020-02-27 |
評価 | 4.25/5 合計 55 レビュー |
開発者 | balvin.perrie |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://webextension.org/listing/mp3-converter.html |
ヘルプページのURL | https://webextension.org/listing/mp3-converter.html |
プライバシーポリシーページのURL | https://add0n.com/policies/balvin.perrie.txt |
対応言語 | de,en,fr,nl,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.3.4", "name": "MP3 Converter", "description": "__MSG_description__", "default_locale": "en", "permissions": [ "downloads", "storage", "contextMenus" ], "optional_host_permissions": [ "*:\/\/*\/*" ], "homepage_url": "https:\/\/webextension.org\/listing\/mp3-converter.html", "background": { "service_worker": "worker.js" }, "sandbox": { "pages": [ "\/data\/window\/mp3\/decoder\/index.html" ] }, "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", "256": "\/data\/icons\/256.png", "512": "\/data\/icons\/512.png" }, "offline_enabled": true, "action": [], "commands": { "_execute_action": [] } } |