Tumblr Plus

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

Qu'est-ce que Tumblr Plus ?

Tumblr Plus est une extension Chrome développée par Fran Méndez, et sa fonction principale est "This extension removes duplicated posts and already viewed post of your tumblr dashboard!".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Tumblr Plus

Téléchargez les fichiers d'extension Tumblr Plus au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Tumblr Plus Tumblr Plus
ID afnnpegeelemflcnchmbpplpnminffkj
URL Officiel https://chrome.google.com/webstore/detail/tumblr-plus/afnnpegeelemflcnchmbpplpnminffkj
Description This extension removes duplicated posts and already viewed post of your tumblr dashboard!
Taille du Fichier 51.53 KB
Nombre d'Installations 278
Version Actuelle 1.1.2
Dernière Mise à Jour 2013-11-27
Date de Publication 2013-11-27
Évaluation 3.00/5 Total 2 Évaluations
Développeur Fran Méndez
Type de Paiement free
Langues Prises en Charge 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"
    ]
}