Relay
Relay browser extension
Cos'è Relay?
Relay è un'estensione di Chrome sviluppata da https://teamrelay.co, e la sua funzione principale è "Relay browser extension".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Relay
Scarica i file di estensione Relay in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Stop wasting time searching through emails and chats to stay up-to-date with changes at work. Relay makes sure you’re ready to hit the ground running with a prioritized single source of truth. No more guessing what to do and when to take action. Informazioni di Base sull'Estensione
| Nome | |
| ID | iongjkmjcmcmnhganalncbkdkohoefok |
| URL Ufficiale | https://chromewebstore.google.com/detail/relay/iongjkmjcmcmnhganalncbkdkohoefok |
| Descrizione | Relay browser extension |
| Dimensione del File | 424 KB |
| Conteggio Installazioni | 405 |
| Versione Corrente | 2.115.0 |
| Ultimo Aggiornamento | 2023-09-26 |
| Data di Pubblicazione | 2021-02-04 |
| Sviluppatore | https://teamrelay.co |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://www.teamrelay.co/ |
| URL della Pagina di Aiuto | https://www.teamrelay.co/ |
| URL della Pagina della Politica sulla Privacy | https://www.teamrelay.co/policy |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Relay",
"version": "2.115.0",
"description": "Relay browser extension",
"manifest_version": 2,
"background": {
"persistent": true,
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/docs.google.com\/forms\/*"
],
"js": [
"google-form.content-script.js"
]
}
],
"browser_action": {
"default_icon": {
"16": "16_active.png",
"24": "24_active.png",
"32": "32_active.png",
"48": "48_active.png",
"128": "128_active.png"
},
"default_popup": "index.html",
"default_title": "Show\/hide Relay"
},
"permissions": [
"identity",
"activeTab",
"storage",
"notifications",
"contextMenus",
"https:\/\/www.teamrelay.co\/",
"webRequest",
"https:\/\/docs.google.com\/forms\/**\/formResponse"
],
"externally_connectable": {
"matches": [
"https:\/\/staging-dashboard.teamrelay.co\/extension-okta-signin*",
"https:\/\/dashboard.teamrelay.co\/extension-okta-signin*"
]
},
"icons": {
"16": "16_active.png",
"24": "24_active.png",
"32": "32_active.png",
"48": "48_active.png",
"128": "128_active.png"
},
"content_security_policy": "script-src 'self' https:\/\/cdn.tiny.cloud; object-src 'self'"
} | |