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

Article Summarizer क्या है?

Article Summarizer FWMBA द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is an article summarizer and paraphraser tool. It will help you in the process of digesting news you're reading on the web.…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Article Summarizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम Article Summarizer Article Summarizer
ID egeenigpoloplpaenimdkbafldcddkbi
आधिकारिक URL https://chromewebstore.google.com/detail/article-summarizer/egeenigpoloplpaenimdkbafldcddkbi
विवरण This is an article summarizer and paraphraser tool. It will help you in the process of digesting news you're reading on the web.…
फ़ाइल का आकार 48.79 KB
स्थापना संख्या 74
वर्तमान संस्करण 1.0
अंतिम अपडेट 2022-12-25
प्रकाशन तिथि 2022-12-24
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर FWMBA
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}