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. 扩展基本信息
| 名称 | |
| 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"
]
} | |