Article Summarizer

This is an article summarizer and paraphraser tool. It will help you in the process of digesting news you're reading on the web.…

O que é Article Summarizer?

Article Summarizer é uma extensão do Chrome desenvolvida por FWMBA, e sua principal característica é "This is an article summarizer and paraphraser tool. It will help you in the process of digesting news you're reading on the web.…".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Article Summarizer

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

                        This is an article summarizer and paraphraser tool. 

It will help you in the process of digesting news you're reading on the web.
And it will help you summarizing them up in a few key bullet points which you can use to speed up your editorial workflow. 

How does it work?

Step 1: Install the Chrome Extension
Step 2: To to OpenAI to activate your API key: 
https://openai.com/api/
Step 3: Go to your profile and grab your API key: 
https://beta.openai.com/account/api-keys
Step 4: Copy your API key in the Chrome Extension
Step 5: Right Click on any article you are reading and click on "Article Summarizer" 

You will see a summary popping up on the top right side of the screen, which will help you as you read the news or write new articles. 

That's it!                    

Informações Básicas da Extensão

Nome Article Summarizer Article Summarizer
ID egeenigpoloplpaenimdkbafldcddkbi
URL Oficial https://chromewebstore.google.com/detail/article-summarizer/egeenigpoloplpaenimdkbafldcddkbi
Descrição This is an article summarizer and paraphraser tool. It will help you in the process of digesting news you're reading on the web.…
Tamanho do Arquivo 48.79 KB
Contagem de Instalações 74
Versão Atual 1.0
Última Atualização 2022-12-25
Data de Publicação 2022-12-24
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor FWMBA
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Article Summarizer",
    "version": "1.0",
    "description": "",
    "icons": {
        "48": "icons\/icon-48.png"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "main.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "action": {
        "default_title": "Article Summarizer",
        "default_icon": "icons\/icon-48.png",
        "default_popup": "popup\/content.html"
    }
}