Gmail Kanban
Simple browser extension Kanban tool for Gmail users.
Gmail Kanban क्या है?
Gmail Kanban hyojin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple browser extension Kanban tool for Gmail users."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gmail Kanban एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
You can create a task card from your gmail. Just click "Add to Kanban" button on your gmail. - It's very simple & free. - You don't need to worry about your privacy. All data of your e-mail and card is stored in your local storage only. - Open source. https://github.com/hyojin/GmailKanban #Change log v0.1.8 - Add confirmation dialog when removing a card list v0.1.7 - Bug fix v0.1.6 - Bug fix v0.1.5 - Not only from gmail also you can add a task card directly. - You can open your Kanban board to click the icon in the toolbar.
एक्सटेंशन की मूल जानकारी
नाम | Gmail Kanban |
ID | lbedfpnhebkdgelkicpjfegneocfapdo |
आधिकारिक URL | https://chromewebstore.google.com/detail/gmail-kanban/lbedfpnhebkdgelkicpjfegneocfapdo |
विवरण | Simple browser extension Kanban tool for Gmail users. |
फ़ाइल का आकार | 628 KB |
स्थापना संख्या | 380 |
वर्तमान संस्करण | 0.1.8 |
अंतिम अपडेट | 2017-03-13 |
प्रकाशन तिथि | 2017-03-12 |
रेटिंग | 2.00/5 कुल 3 रेटिंग्स |
डेवलपर | hyojin |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/hyojin/GmailKanban |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail Kanban", "description": "Simple browser extension Kanban tool for Gmail users.", "version": "0.1.8", "author": "Hyojin Kwak", "homepage_url": "https:\/\/github.com\/hyojin\/GmailKanban#readme", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "tabs", "unlimitedStorage", "https:\/\/mail.google.com\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_icon": { "19": "icons\/icon19.png", "38": "icons\/icon38.png" }, "default_title": "Gmail Kanban", "default_popup": "popup.html" } } |