Briefly

Briefly allows you to save time by generating summaries of texts in websites using an advanced GPT-3 AI algorithm.

Briefly क्या है?

Briefly Briefly द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Briefly allows you to save time by generating summaries of texts in websites using an advanced GPT-3 AI algorithm."।

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

screenshot
screenshot

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

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

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

                        Briefly is a chrome extension that allows you to summarize texts in websites.

We use an advances GPT-3 AI algorithim to genereate the best possible summaries.                    

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

नाम Briefly Briefly
ID koceodkdlldkaoenidaolomgcjnaoolf
आधिकारिक URL https://chromewebstore.google.com/detail/briefly/koceodkdlldkaoenidaolomgcjnaoolf
विवरण Briefly allows you to save time by generating summaries of texts in websites using an advanced GPT-3 AI algorithm.
फ़ाइल का आकार 95.5 KB
स्थापना संख्या 139
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2022-02-14
प्रकाशन तिथि 2022-01-17
रेटिंग 3.00/5 कुल 3 रेटिंग्स
डेवलपर Briefly
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://getbriefly.co
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Briefly",
    "version": "1.0.1",
    "description": "Briefly allows you to save time by generating summaries of texts in websites using an advanced GPT-3 AI algorithm.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Briefly",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "globals.js",
                "components.js",
                "contentScript.js"
            ],
            "css": [
                "contentScript.css",
                "components.css",
                "popup.css"
            ]
        }
    ]
}