Reddit Scrolls Hover Scroll

This extension searches through the page on reddit.com/r/Scrolls for scroll names and creates an image of the scroll on hover.

O que é Reddit Scrolls Hover Scroll?

Reddit Scrolls Hover Scroll é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "This extension searches through the page on reddit.com/r/Scrolls for scroll names and creates an image of the scroll on hover.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Reddit Scrolls Hover Scroll

Baixe arquivos de extensão Reddit Scrolls Hover Scroll 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

                        This extension will look through the subreddits /r/Scrolls and /r/ScrollsTrading and replace any iteration of a card name with a hoverable link. When hovered an image of the scroll will appear.

It makes use of the api from scrolldier.com.                    

Informações Básicas da Extensão

Nome Reddit Scrolls Hover Scroll Reddit Scrolls Hover Scroll
ID bcodpcpfhhhngkpcejdipfhpofdkiogo
URL Oficial https://chromewebstore.google.com/detail/reddit-scrolls-hover-scro/bcodpcpfhhhngkpcejdipfhpofdkiogo
Descrição This extension searches through the page on reddit.com/r/Scrolls for scroll names and creates an image of the scroll on hover.
Tamanho do Arquivo 73.49 KB
Contagem de Instalações 19
Versão Atual 1.0
Última Atualização 2014-12-31
Data de Publicação 2014-12-31
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit Scrolls Hover Scroll",
    "description": "This extension searches through the page on reddit.com\/r\/Scrolls for scroll names and creates an image of the scroll on hover.",
    "version": "1.0",
    "permissions": [
        "http:\/\/www.reddit.com\/*",
        "http:\/\/api.scrolldier.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.reddit.com\/r\/scrolls\/*",
                "*:\/\/www.reddit.com\/r\/Scrolls\/*",
                "*:\/\/*.reddit.com\/r\/scrollstrading\/*",
                "*:\/\/*.reddit.com\/r\/ScrollsTrading\/*"
            ],
            "js": [
                "jquery.js",
                "cs.js",
                "scrolls_hover.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "scrolls_hover_icon_16.png",
        "48": "scrolls_hover_icon_48.png",
        "128": "scrolls_hover_icon.png"
    }
}