Tumblr Plus

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

Was ist Tumblr Plus?

Tumblr Plus ist eine Chrome-Erweiterung, die von Fran Méndez entwickelt wurde, und ihr Hauptmerkmal ist "This extension removes duplicated posts and already viewed post of your tumblr dashboard!".

Erweiterungsscreenshots

screenshot
screenshot

Tumblr Plus-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tumblr Plus-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Tumblr Plus Tumblr Plus
ID afnnpegeelemflcnchmbpplpnminffkj
Offizielle URL https://chrome.google.com/webstore/detail/tumblr-plus/afnnpegeelemflcnchmbpplpnminffkj
Beschreibung This extension removes duplicated posts and already viewed post of your tumblr dashboard!
Dateigröße 51.53 KB
Installationsanzahl 278
Aktuelle Version 1.1.2
Letztes Update 2013-11-27
Veröffentlichungsdatum 2013-11-27
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler Fran Méndez
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}