Maker vs Manager
Computes whether your schedule is a maker's schedule or a manager's schedule.
Maker vs Manager क्या है?
Maker vs Manager maker.schedule.score द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Computes whether your schedule is a maker's schedule or a manager's schedule."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Maker vs Manager एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension looks at your weekly schedule in Google Calendar and computes whether you have a "maker schedule" or a "manager". The scores range from 0% to 100%. A higher score is more of a maker's schedule while a lower score is more of a manager's schedule. The extension looks at the number of meetings, the time of those meetings and the free time in your schedule to compute the score. Full explanation at: http://arthur-johnston.com/scoring_schedule
एक्सटेंशन की मूल जानकारी
नाम | Maker vs Manager |
ID | bnoecidbhjmddidnbfpmdhkpemcfoifl |
आधिकारिक URL | https://chromewebstore.google.com/detail/maker-vs-manager/bnoecidbhjmddidnbfpmdhkpemcfoifl |
विवरण | Computes whether your schedule is a maker's schedule or a manager's schedule. |
फ़ाइल का आकार | 28.51 KB |
स्थापना संख्या | 25 |
वर्तमान संस्करण | 1.002 |
अंतिम अपडेट | 2018-08-24 |
प्रकाशन तिथि | 2018-08-23 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | maker.schedule.score |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://arthur-johnston.com/scoring_schedule |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Maker vs Manager", "description": "Computes whether your schedule is a maker's schedule or a manager's schedule.", "version": "1.002", "icons": { "128": "icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "js": [ "raw.js" ] } ], "page_action": { "default_name": "Maker vs Manager score", "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab" ] } |