Add this page to Trello
Add this page to Trello as new task
Add this page to Trello क्या है?
Add this page to Trello https://www.muratayusuke.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add this page to Trello as new task"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Add this page to Trello एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Simple extension for Trello user to add current page to Trello as new task.
एक्सटेंशन की मूल जानकारी
नाम | Add this page to Trello |
ID | fjfljghieliggacelkamhfiiejncmjmi |
आधिकारिक URL | https://chromewebstore.google.com/detail/add-this-page-to-trello/fjfljghieliggacelkamhfiiejncmjmi |
विवरण | Add this page to Trello as new task |
फ़ाइल का आकार | 53.6 KB |
स्थापना संख्या | 552 |
वर्तमान संस्करण | 0.105 |
अंतिम अपडेट | 2015-06-06 |
प्रकाशन तिथि | 2015-06-05 |
रेटिंग | 3.33/5 कुल 3 रेटिंग्स |
डेवलपर | https://www.muratayusuke.com |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "version": "0.105", "description": "__MSG_appDesc__", "default_locale": "en", "icons": { "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "background": { "scripts": [ "jquery-2.1.3.min.js", "main.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-2.1.3.min.js", "script.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "img\/icon.png", "default_title": "Add this page to Trello", "default_popup": "popup.html" }, "permissions": [ "tabs", "activeTab", "http:\/\/*\/*\/", "https:\/\/*\/*\/" ] } |