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 |
公式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 |
Eメール | [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" ] } |