Tumblr Plus

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

什么是Tumblr Plus?

Tumblr Plus是由Fran Méndez开发的Chrome扩展程序,该扩展的主要功能是“This extension removes duplicated posts and already viewed post of your tumblr dashboard!”。

扩展截图

screenshot
screenshot

下载Tumblr Plus扩展crx文件

下载Tumblr Plus扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}