Auto Open Add-on
Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.
Hvad er Auto Open Add-on?
Auto Open Add-on er en Chrome-udvidelse udviklet af https://darsoft.es, og dens hovedfunktion er "Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.".
Udvidelsesskærmbilleder
Download Auto Open Add-on-udvidelses-CRX-fil
Download Auto Open Add-on-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Auto Open Add-on |
ID | bcjnialkobgkdkbdclhdnbdcdgdcgdlo |
Officiel URL | https://chromewebstore.google.com/detail/auto-open-add-on/bcjnialkobgkdkbdclhdnbdcdgdcgdlo |
Beskrivelse | Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts. |
Filstørrelse | 17.4 KB |
Antal Installationer | 783 |
Nuværende Version | 0.28 |
Senest Opdateret | 2021-05-09 |
Udgivelsesdato | 2021-04-18 |
Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
Udvikler | https://darsoft.es |
[email protected] | |
Betalingsmetode | free |
Hjælpeside-URL | http://darsoft.es/contact-us/ |
Understøttede Sprog | 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 } |