SlideShare Theater

Enter a distraction free content viewing experience on SlideShare.

O que é SlideShare Theater?

SlideShare Theater é uma extensão do Chrome desenvolvida por https://ss-theater.vishusingh.com, e sua principal característica é "Enter a distraction free content viewing experience on SlideShare.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão SlideShare Theater

Baixe arquivos de extensão SlideShare Theater no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Head over to the SlideShare's content viewing page and start the extension (or hit alt/option + shift + s) to enter the theater.                    

Informações Básicas da Extensão

Nome SlideShare Theater SlideShare Theater
ID fgaccaeaghfdbdllmkckjgefbgkblnjb
URL Oficial https://chromewebstore.google.com/detail/slideshare-theater/fgaccaeaghfdbdllmkckjgefbgkblnjb
Descrição Enter a distraction free content viewing experience on SlideShare.
Tamanho do Arquivo 73.49 KB
Contagem de Instalações 1,381
Versão Atual 0.0.6
Última Atualização 2017-05-20
Data de Publicação 2017-05-19
Classificação 4.38/5 Total de 32 Avaliações
Desenvolvedor https://ss-theater.vishusingh.com
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SlideShare Theater",
    "version": "0.0.6",
    "manifest_version": 2,
    "description": "Enter a distraction free content viewing experience on SlideShare.",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "icons": {
        "19": "images\/19x19.png",
        "38": "images\/38x38.png",
        "48": "images\/48x48.png",
        "128": "images\/128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.slideshare.net\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "content.js"
            ],
            "css": [
                "styles.css",
                "css\/animate.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/19x19.png",
            "38": "images\/38x38.png",
            "48": "images\/48x48.png",
            "128": "images\/128x128.png"
        },
        "default_title": "Start SlideShare Theater"
    },
    "web_accessible_resources": [
        "ss-theater.html",
        "images\/*.png"
    ],
    "commands": {
        "toggle-ss-theater": {
            "suggested_key": {
                "default": "Alt+Shift+S"
            },
            "description": "Toggle SS Theater"
        }
    }
}