Auto Open Add-on
Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.
Auto Open Add-on क्या है?
Auto Open Add-on https://darsoft.es द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Auto Open Add-on एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension automatically opens the Workspace addon you like when the Google service is started in your browser (addon sidebar is shown on page load). It supports addons from Gmail, Google Calendar, Google Drive and Google Docs.
एक्सटेंशन की मूल जानकारी
नाम | Auto Open Add-on |
ID | bcjnialkobgkdkbdclhdnbdcdgdcgdlo |
आधिकारिक URL | https://chromewebstore.google.com/detail/auto-open-add-on/bcjnialkobgkdkbdclhdnbdcdgdcgdlo |
विवरण | Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts. |
फ़ाइल का आकार | 17.4 KB |
स्थापना संख्या | 783 |
वर्तमान संस्करण | 0.28 |
अंतिम अपडेट | 2021-05-09 |
प्रकाशन तिथि | 2021-04-18 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | https://darsoft.es |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | http://darsoft.es/contact-us/ |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Open Add-on", "version": "0.28", "description": "Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.", "permissions": [ "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/calendar.google.com\/*", "https:\/\/drive.google.com\/*", "https:\/\/docs.google.com\/*" ], "js": [ "autoopenaddon.js" ], "run_at": "document_end" } ], "page_action": { "default_title": "Auto Open Add-on", "default_popup": "popup.html", "default_icon": { "16": "images\/autoopenaddon16.png", "32": "images\/autoopenaddon32.png", "48": "images\/autoopenaddon48.png", "128": "images\/autoopenaddon128.png" } }, "icons": { "16": "images\/autoopenaddon16.png", "32": "images\/autoopenaddon32.png", "48": "images\/autoopenaddon48.png", "128": "images\/autoopenaddon128.png" }, "manifest_version": 2 } |