Mailist - Bookmark Manager and Read Later Tool
This extension allows you to add and summarize any page you are visiting to your Mailist!
Mailist - Bookmark Manager and Read Later Tool là gì?
Mailist - Bookmark Manager and Read Later Tool là một tiện ích mở rộng Chrome được phát triển bởi https://mailist.app, và tính năng chính của nó là "This extension allows you to add and summarize any page you are visiting to your Mailist!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Mailist - Bookmark Manager and Read Later Tool
Tải xuống các tệp mở rộng Mailist - Bookmark Manager and Read Later Tool dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Mailist - Bookmark Manager and Read Later Tool |
ID | licmkngefgaochmpakpnekppagaimeea |
URL Chính Thức | https://chromewebstore.google.com/detail/mailist-bookmark-manager/licmkngefgaochmpakpnekppagaimeea |
Mô tả | This extension allows you to add and summarize any page you are visiting to your Mailist! |
Kích Thước Tệp | 47.9 KB |
Số Lần Cài Đặt | 675 |
Phiên Bản Hiện Tại | 3.0.2 |
Cập Nhật Lần Cuối | 2024-02-24 |
Ngày Phát Hành | 2019-12-16 |
Đánh Giá | 4.88/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | https://mailist.app |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://mailist.app |
URL Trang Chính Sách Bảo Mật | https://www.mailist.app/privacy-policy.html |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |