Mailist - Bookmark Manager and Read Later Tool
This extension allows you to add and summarize any page you are visiting to your Mailist!
What is Mailist - Bookmark Manager and Read Later Tool?
Mailist - Bookmark Manager and Read Later Tool is a Chrome extension developed by https://mailist.app, and its main feature is "This extension allows you to add and summarize any page you are visiting to your Mailist!".
Extension Screenshots
Download Mailist - Bookmark Manager and Read Later Tool Extension CRX File
Download Mailist - Bookmark Manager and Read Later Tool 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
This extension allows you to quickly add and summarize any page link to your Mailist. Simply click the button and add new link to your Mailist account.
Extension Basic Information
Name | Mailist - Bookmark Manager and Read Later Tool |
ID | licmkngefgaochmpakpnekppagaimeea |
Official URL | https://chromewebstore.google.com/detail/mailist-bookmark-manager/licmkngefgaochmpakpnekppagaimeea |
Description | This extension allows you to add and summarize any page you are visiting to your Mailist! |
File Size | 47.9 KB |
Installation Count | 675 |
Current Version | 3.0.2 |
Last Updated | 2024-02-24 |
Publish Date | 2019-12-16 |
Rating | 4.88/5 Total 8 Ratings |
Developer | https://mailist.app |
[email protected] | |
Payment Type | free |
Extension Website | https://mailist.app |
Privacy Policy Page URL | https://www.mailist.app/privacy-policy.html |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Mailist - Bookmark Manager and Read Later Tool", "description": "This extension allows you to add and summarize any page you are visiting to your Mailist!", "version": "3.0.2", "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png", "32": "icon32.png", "128": "icon128.png" }, "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "32": "icon32.png", "128": "icon128.png" }, "background": { "service_worker": "installation-status.js", "type": "module" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "context-menu.js" ] } ], "externally_connectable": { "ids": [ "licmkngefgaochmpakpnekppagaimeea" ], "matches": [ "*:\/\/my.mailist.app\/*" ] }, "permissions": [ "activeTab", "storage", "contextMenus" ], "host_permissions": [ "https:\/\/my.mailist.app\/", "https:\/\/my.mailist.app\/v1\/api\/sessions", "https:\/\/my.mailist.app\/v1\/api\/links", "https:\/\/my.mailist.app\/v1\/api\/links\/check", "https:\/\/my.mailist.app\/v1\/api\/tags", "https:\/\/my.mailist.app\/v1\/api\/notes" ] } |