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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |