Pushnews

Send Push Notifications with Pushnews

O que é Pushnews?

Pushnews é uma extensão do Chrome desenvolvida por https://pushnews.eu, e sua principal característica é "Send Push Notifications with Pushnews".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Pushnews

Baixe arquivos de extensão Pushnews 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

                        The Pushnews Chrome Extension allows you to quickly create a Push Notification by sending active tab's URL to Pushnews.

Pushnews will try to retrieve title, description and image from the URL and pre-build a Push Notification                    

Informações Básicas da Extensão

Nome Pushnews Pushnews
ID ioojhhbjegkmkekbkbhagcokmcmamiff
URL Oficial https://chromewebstore.google.com/detail/pushnews/ioojhhbjegkmkekbkbhagcokmcmamiff
Descrição Send Push Notifications with Pushnews
Tamanho do Arquivo 73.02 KB
Contagem de Instalações 64
Versão Atual 1.0
Última Atualização 2022-05-17
Data de Publicação 2018-11-23
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://pushnews.eu
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.pushnews.eu/
URL da Página de Ajuda https://www.pushnews.eu/
URL da Página de Política de Privacidade https://github.com/pushnews/chrome-extension/blob/master/PRIVACYPOLICY.md
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pushnews",
    "version": "1.0",
    "description": "Send Push Notifications with Pushnews",
    "permissions": [
        "tabs",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "96": "images\/icon-96.png",
            "128": "images\/icon-128.png"
        }
    },
    "options_page": "options.html",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "96": "images\/icon-96.png",
        "128": "images\/icon-128.png"
    },
    "manifest_version": 3
}