Newsletry
Discover and read awesome newsletters. All in one place.
Cos'è Newsletry?
Newsletry è un'estensione di Chrome sviluppata da https://newsletry.com, e la sua funzione principale è "Discover and read awesome newsletters. All in one place.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Newsletry
Scarica i file di estensione Newsletry 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
Last newsletter updates in every new tab. Find fresh newsletters tailored to your taste. Keep your inbox neat & organized.
Informazioni di Base sull'Estensione
Nome | Newsletry |
ID | hmceoehebmdjahmaeojnojgpnipcbfda |
URL Ufficiale | https://chromewebstore.google.com/detail/newsletry/hmceoehebmdjahmaeojnojgpnipcbfda |
Descrizione | Discover and read awesome newsletters. All in one place. |
Dimensione del File | 429 KB |
Conteggio Installazioni | 17 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2020-07-06 |
Data di Pubblicazione | 2020-07-06 |
Sviluppatore | https://newsletry.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://newsletry.com/ |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Newsletry", "version": "1.0", "description": "Discover and read awesome newsletters. All in one place.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": { "16": "icon16.png", "24": "icon24.png", "32": "icon32.png" }, "default_title": "Newsletry" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "chrome_url_overrides": { "newtab": "index.html" }, "content_scripts": [ { "matches": [ "https:\/\/newsletry.com\/*" ], "js": [ "script.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/newsletry.com 'unsafe-inline' 'unsafe-eval'", "permissions": [ "tabs" ] } |