Markie
Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more.
Markie क्या है?
Markie Markie द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Markie एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Markie for Chrome automatically categorizes and tags your bookmarks according to its content using artificial intelligence. You don't have to worry about organizing your bookmarks anymore. ** Features List ** - Automatic categorization and tagging using AI - Finding similar bookmarks using AI - Article view mode - Automatic tagging - Highlighting (in article mode) - Permanent storage of articles (if the page gets taken down, you'll still have a copy of the article).
एक्सटेंशन की मूल जानकारी
नाम | Markie |
ID | ehhkpofebhdiffegjnahjofmdjaphlmf |
आधिकारिक URL | https://chromewebstore.google.com/detail/markie/ehhkpofebhdiffegjnahjofmdjaphlmf |
विवरण | Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more. |
फ़ाइल का आकार | 620 KB |
स्थापना संख्या | 200 |
वर्तमान संस्करण | 1.2.2 |
अंतिम अपडेट | 2020-12-02 |
प्रकाशन तिथि | 2020-10-14 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | Markie |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://getmarkie.com |
सहायता पृष्ठ URL | https://getmarkie.com/legal |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Markie", "description": "Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more.", "version": "1.2.2", "manifest_version": 2, "permissions": [ "activeTab", "storage" ], "icons": { "32": "icons\/markie-new-32.png", "128": "icons\/markie-new-128.png" }, "browser_action": { "default_title": "Markie", "default_icon": { "32": "icons\/markie-new-bw-32.png", "128": "icons\/markie-new-bw-128.png" } }, "commands": { "_execute_browser_action": { "description": "Save Bookmark to Markie", "suggested_key": { "default": "Ctrl+Shift+Space", "mac": "Command+Shift+Space" } } }, "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options\/options.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "popup\/getSource.js" ] } ], "web_accessible_resources": [ "popup\/save\/save.html" ] } |