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คืออะไร?
Mailist - Bookmark Manager and Read Later Tool เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://mailist.app และคุณลักษณะหลักของมันคือ "This extension allows you to add and summarize any page you are visiting to your Mailist!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mailist - Bookmark Manager and Read Later Tool
ดาวน์โหลดไฟล์ส่วนขยาย Mailist - Bookmark Manager and Read Later Tool ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Mailist - Bookmark Manager and Read Later Tool |
ID | licmkngefgaochmpakpnekppagaimeea |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mailist-bookmark-manager/licmkngefgaochmpakpnekppagaimeea |
คำอธิบาย | This extension allows you to add and summarize any page you are visiting to your Mailist! |
ขนาดไฟล์ | 47.9 KB |
จำนวนการติดตั้ง | 675 |
เวอร์ชันปัจจุบัน | 3.0.2 |
อัปเดตครั้งล่าสุด | 2024-02-24 |
วันที่เผยแพร่ | 2019-12-16 |
คะแนน | 4.88/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | https://mailist.app |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://mailist.app |
URL หน้านโยบายความเป็นส่วนตัว | https://www.mailist.app/privacy-policy.html |
ภาษาที่รองรับ | 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" ] } |