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是由https://mailist.app開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to add and summarize any page you are visiting to your Mailist!”。
擴展截圖
下載Mailist - Bookmark Manager and Read Later Tool擴展crx文件
下載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 |
官方網址 | 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" ] } |