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
官方網址 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"
    ]
}