Speak Selection

Speaks the current selection out loud.

Vad är Speak Selection?

Speak Selection är en Chrome-tillägg utvecklad av https://sites.google.com/site/encontralogratis, och dess huvudfunktion är "Speaks the current selection out loud.".

Tilläggsskärmbilder

screenshot

Ladda ner Speak Selection-förlängningens CRX-fil

Ladda ner Speak Selection-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

                        Convierte cualquier texto de una web voz deja de leer y escucha tus noticias favoritas                    

Grundläggande Information om Tillägg

Namn Speak Selection Speak Selection
ID kcdbalaepjkgpikfadbdjccobelibgdl
Officiell webbadress https://chrome.google.com/webstore/detail/speak-selection/kcdbalaepjkgpikfadbdjccobelibgdl
Beskrivning Speaks the current selection out loud.
Filstorlek 38.7 KB
Antal Installationer 82
Aktuell Version 1.1
Senast Uppdaterad 2017-09-19
Publiceringsdatum 2017-09-19
Betyg 4.00/5 Totalt 1 Betyg
Utvecklare https://sites.google.com/site/encontralogratis
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://goo.gl/eQNkWB
Hjälpsida URL https://goo.gl/eQNkWB
Stödda Språk es-419
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Speak Selection",
    "version": "1.1",
    "description": "Speaks the current selection out loud.",
    "permissions": [
        "",
        "tts",
        "tabs"
    ],
    "background": {
        "scripts": [
            "keycodes.js",
            "tabs.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "SpeakSel19.png",
        "default_title": "Speak Selection"
    },
    "options_page": "options.html",
    "minimum_chrome_version": "14",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "keycodes.js",
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "SpeakSel16.png",
        "48": "SpeakSel48.png",
        "128": "SpeakSel128.png",
        "256": "SpeakSel256.png"
    },
    "manifest_version": 2
}