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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to add and summarize any page you are visiting to your Mailist!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Mailist - Bookmark Manager and Read Later Tool एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |