Tumblr Plus

This extension removes duplicated posts and already viewed post of your tumblr dashboard!

O que é Tumblr Plus?

Tumblr Plus é uma extensão do Chrome desenvolvida por Fran Méndez, e sua principal característica é "This extension removes duplicated posts and already viewed post of your tumblr dashboard!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Tumblr Plus

Baixe arquivos de extensão Tumblr Plus 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

                        Extension for Tumblr repeated post on dashboard.

It has the ability to save history as well. Just go to your dasboard and it will appear an icon on your url to change the setting.
You can also clear history if you want by pressing the button "Clear history".

Hope you enjoy as I did coding it. 

Peace.                    

Informações Básicas da Extensão

Nome Tumblr Plus Tumblr Plus
ID afnnpegeelemflcnchmbpplpnminffkj
URL Oficial https://chrome.google.com/webstore/detail/tumblr-plus/afnnpegeelemflcnchmbpplpnminffkj
Descrição This extension removes duplicated posts and already viewed post of your tumblr dashboard!
Tamanho do Arquivo 51.53 KB
Contagem de Instalações 278
Versão Atual 1.1.2
Última Atualização 2013-11-27
Data de Publicação 2013-11-27
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor Fran Méndez
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tumblr Plus",
    "description": "This extension removes duplicated posts and already viewed post of your tumblr dashboard!",
    "version": "1.1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.tumblr.com\/dashboard"
            ],
            "js": [
                "jquery.js",
                "visible.js",
                "tumblr.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "images\/19.png",
            "38": "images\/38.png"
        },
        "default_title": "Tumblr Plus",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "enlarge.jpg"
    ],
    "permissions": [
        "storage",
        "tabs"
    ]
}