Wordsmith

Write with purpose. Write with Wordsmith.

Vad är Wordsmith?

Wordsmith är en Chrome-tillägg utvecklad av patrick.123.foster, och dess huvudfunktion är "Write with purpose. Write with Wordsmith.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Wordsmith-förlängningens CRX-fil

Ladda ner Wordsmith-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Wordsmith is a GPT-3 powered AI writing assistant. While writing emails or essays, simply highlight any amount of text and Wordsmith's popup will show up. You can select between seven option of how to rewrite the section of text. These include applying a scholarly tone, a professional tone, broadening your vocabulary, using an active voice, adding vivid details, shortening it, or making it longer.                    

Grundläggande Information om Tillägg

Namn Wordsmith Wordsmith
ID ffjginbaonjceegjiapjgopplicfpbcm
Officiell webbadress https://chromewebstore.google.com/detail/wordsmith/ffjginbaonjceegjiapjgopplicfpbcm
Beskrivning Write with purpose. Write with Wordsmith.
Filstorlek 881 KB
Antal Installationer 38
Aktuell Version 1.01
Senast Uppdaterad 2023-02-02
Publiceringsdatum 2023-02-01
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare patrick.123.foster
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://try-wordsmith.netlify.app
Hjälpsida URL https://try-wordsmith.netlify.app
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wordsmith",
    "description": "Write with purpose. Write with Wordsmith.",
    "version": "1.01",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "Open the popup"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*.png",
                "images\/*.svg"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "logo192.png",
        "48": "logo192.png",
        "128": "logo192.png"
    },
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "styles\/content.css"
            ],
            "matches": [
                ""
            ]
        }
    ]
}