Auto Open Add-on
Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.
Co to jest Auto Open Add-on?
Auto Open Add-on to rozszerzenie Chrome opracowane przez https://darsoft.es, a jego główną funkcją jest „Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Auto Open Add-on
Pobierz pliki rozszerzeń Auto Open Add-on w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Auto Open Add-on |
ID | bcjnialkobgkdkbdclhdnbdcdgdcgdlo |
Oficjalny URL | https://chromewebstore.google.com/detail/auto-open-add-on/bcjnialkobgkdkbdclhdnbdcdgdcgdlo |
Opis | Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts. |
Rozmiar pliku | 17.4 KB |
Liczba instalacji | 783 |
Aktualna Wersja | 0.28 |
Ostatnia Aktualizacja | 2021-05-09 |
Data Publikacji | 2021-04-18 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | https://darsoft.es |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | http://darsoft.es/contact-us/ |
Obsługiwane Języki | 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 } |