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.…

Qu'est-ce que Article Summarizer ?

Article Summarizer est une extension Chrome développée par FWMBA, et sa fonction principale est "This is an article summarizer and paraphraser tool. It will help you in the process of digesting news you're reading on the web.…".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Article Summarizer

Téléchargez les fichiers d'extension Article Summarizer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Article Summarizer Article Summarizer
ID egeenigpoloplpaenimdkbafldcddkbi
URL Officiel https://chromewebstore.google.com/detail/article-summarizer/egeenigpoloplpaenimdkbafldcddkbi
Description This is an article summarizer and paraphraser tool. It will help you in the process of digesting news you're reading on the web.…
Taille du Fichier 48.79 KB
Nombre d'Installations 74
Version Actuelle 1.0
Dernière Mise à Jour 2022-12-25
Date de Publication 2022-12-24
Évaluation 5.00/5 Total 1 Évaluations
Développeur FWMBA
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}