md5sum
This extension outputs MD5 message digest by right-clicking on link or drag-and-drop files.
What is md5sum?
md5sum is a Chrome extension developed by eichisanden, and its main feature is "This extension outputs MD5 message digest by right-clicking on link or drag-and-drop files.".
Extension Screenshots
Download md5sum Extension CRX File
Download md5sum extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Show md5sum, line-feed code and file encoding by Drag-and-drop on browserAction. You can see md5sum, encoding, line feed and file contents by opening context menu on link.
Extension Basic Information
Name | |
ID | ejgcoblphdbnaednpcfjacbbkdnmamlc |
Official URL | https://chrome.google.com/webstore/detail/md5sum/ejgcoblphdbnaednpcfjacbbkdnmamlc |
Description | This extension outputs MD5 message digest by right-clicking on link or drag-and-drop files. |
File Size | 640 KB |
Installation Count | 90 |
Current Version | 1.5 |
Last Updated | 2019-04-10 |
Publish Date | 2019-04-10 |
Rating | 1.00/5 Total 1 Ratings |
Developer | eichisanden |
Payment Type | free |
Extension Website | https://github.com/eichisanden/md5sum |
Help Page URL | https://github.com/eichisanden/md5sum |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "md5sum", "short_name": "md5sum", "version": "1.5", "manifest_version": 2, "description": "This extension outputs MD5 message digest by right-clicking on link or drag-and-drop files.", "background": { "persistent": false, "scripts": [ "js\/lib\/md5.js", "js\/background.js" ] }, "browser_action": { "default_title": "md5sum" }, "icons": { "16": "images\/icon_016.png", "48": "images\/icon_048.png", "128": "images\/icon_128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "contextMenus", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |