Alem - ChatGPT RTL Extension

Changes the direction of ChatGPT responses to RTL.

Vad är Alem - ChatGPT RTL Extension?

Alem - ChatGPT RTL Extension är en Chrome-tillägg utvecklad av a.zareshahi1377, och dess huvudfunktion är "Changes the direction of ChatGPT responses to RTL.".

Tilläggsskärmbilder

screenshot

Ladda ner Alem - ChatGPT RTL Extension-förlängningens CRX-fil

Ladda ner Alem - ChatGPT RTL Extension-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

                        with this extension you can see ChatGPT RTL answers correctly                    

Grundläggande Information om Tillägg

Namn Alem - ChatGPT RTL Extension Alem - ChatGPT RTL Extension
ID djlffendllcenogpogdcoljdpodlnhah
Officiell webbadress https://chromewebstore.google.com/detail/alem-chatgpt-rtl-extensio/djlffendllcenogpogdcoljdpodlnhah
Beskrivning Changes the direction of ChatGPT responses to RTL.
Filstorlek 17.41 KB
Antal Installationer 670
Aktuell Version 1.2
Senast Uppdaterad 2023-03-29
Publiceringsdatum 2023-03-29
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare a.zareshahi1377
E-post [email protected]
Betalningssätt free
Stödda Språk fa
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Alem - ChatGPT RTL Extension",
    "version": "1.2",
    "description": "Changes the direction of ChatGPT responses to RTL.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "permissions": [
        "webRequest"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}