Tumblr Plus

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

Tumblr Plus क्या है?

Tumblr Plus Fran Méndez द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension removes duplicated posts and already viewed post of your tumblr dashboard!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tumblr Plus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Tumblr Plus Tumblr Plus
ID afnnpegeelemflcnchmbpplpnminffkj
आधिकारिक URL https://chrome.google.com/webstore/detail/tumblr-plus/afnnpegeelemflcnchmbpplpnminffkj
विवरण This extension removes duplicated posts and already viewed post of your tumblr dashboard!
फ़ाइल का आकार 51.53 KB
स्थापना संख्या 278
वर्तमान संस्करण 1.1.2
अंतिम अपडेट 2013-11-27
प्रकाशन तिथि 2013-11-27
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर Fran Méndez
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    ]
}