Speak Text

Speak Text converts selected text into speech.

Τι είναι το Speak Text;

Το Speak Text είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://speak-text-tab.com, και η κύρια λειτουργία του είναι "Speak Text converts selected text into speech.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Speak Text

Λήψη αρχείων επέκτασης Speak Text σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Speak Text extension converts text into speech on any websites. Select words or paragraphs and then just listen. From the new tab page you can also paste text into provided field and either listen to or search for the selected text. Useful and convenient for everyone.
 
By clicking "Add to Chrome", I accept and agree to installing the Speak Text Chrome extension and setting Chrome™ New Tab, Homepage takeover, and Default Search to that provided by the service with search results by Bing, and the Terms of Use and Privacy Policy.

Features:
- TTS SpeechEngine, extension uses human-quality text-to-speech (TTS) to read any selected text in the browser
- Stop Speech, extension has the ability to stop ongoing speech.
- You can turn ON or OFF the extension at any time.
- Free Of Cost
- The quality of a speech similarity to the human voice and understandable & its totally free of cost.
 
Terms of Use: https://speak-text-tab.com/terms-conditions/
Privacy Policy: https://speak-text-tab.com/privacy-policy/                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Speak Text Speak Text
ID gdedjdcmilamhhhdgainglhffdfcjdma
Επίσημο URL https://chromewebstore.google.com/detail/speak-text/gdedjdcmilamhhhdgainglhffdfcjdma
Περιγραφή Speak Text converts selected text into speech.
Μέγεθος Αρχείου 932 KB
Αριθμός Εγκαταστάσεων 23,613
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2022-04-12
Ημερομηνία Δημοσίευσης 2022-01-26
Αξιολόγηση 4.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής https://speak-text-tab.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://speak-text-tab.com/
URL της Σελίδας Πολιτικής Απορρήτου https://cosmica-tab.com/privacy-policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Speak Text",
    "short_name": "Speak Text",
    "version": "1.0.2",
    "description": "Speak Text converts selected text into speech.",
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "128": "speak-text-icon.png"
    },
    "action": {
        "browser_style": true,
        "default_title": "Speak Text",
        "default_popup": "index.html"
    },
    "author": "Speak Text",
    "permissions": [
        "contextMenus",
        "storage",
        "tts",
        "ttsEngine"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "assets\/js\/jquery.min.js",
                "assets\/js\/content_scripts.js",
                "assets\/js\/tab_script.js"
            ],
            "css": [
                "assets\/css\/speak_text.css"
            ]
        }
    ],
    "tts_engine": {
        "voices": [
            {
                "voice_name": "Alice",
                "lang": "en-US",
                "event_types": [
                    "start",
                    "marker",
                    "end"
                ]
            },
            {
                "voice_name": "Pat",
                "lang": "en-US",
                "event_types": [
                    "end"
                ]
            }
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/assets\/images\/*",
                "speak-text-icon.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "chrome_settings_overrides": {
        "search_provider": {
            "encoding": "UTF-8",
            "favicon_url": "https:\/\/speak-text-tab.com\/wp-content\/uploads\/2021\/10\/64x64.png",
            "is_default": true,
            "keyword": "Keyword",
            "name": "Speak Text",
            "search_url": "https:\/\/search.speak-text-tab.com\/search?q={searchTerms}"
        }
    },
    "chrome_url_overrides": {
        "newtab": "new-tab.html"
    }
}