Newsletry

Discover and read awesome newsletters. All in one place.

O que é Newsletry?

Newsletry é uma extensão do Chrome desenvolvida por https://newsletry.com, e sua principal característica é "Discover and read awesome newsletters. All in one place.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Newsletry

Baixe arquivos de extensão Newsletry no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Last newsletter updates in every new tab. Find fresh newsletters tailored to your taste. Keep your inbox neat & organized.                    

Informações Básicas da Extensão

Nome Newsletry Newsletry
ID hmceoehebmdjahmaeojnojgpnipcbfda
URL Oficial https://chromewebstore.google.com/detail/newsletry/hmceoehebmdjahmaeojnojgpnipcbfda
Descrição Discover and read awesome newsletters. All in one place.
Tamanho do Arquivo 429 KB
Contagem de Instalações 17
Versão Atual 1.0
Última Atualização 2020-07-06
Data de Publicação 2020-07-06
Desenvolvedor https://newsletry.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://newsletry.com/
Idiomas Suportados 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"
    ]
}