Tumblr Plus

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

Tumblr Plus là gì?

Tumblr Plus là một tiện ích mở rộng Chrome được phát triển bởi Fran Méndez, và tính năng chính của nó là "This extension removes duplicated posts and already viewed post of your tumblr dashboard!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tumblr Plus

Tải xuống các tệp mở rộng Tumblr Plus dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tumblr Plus Tumblr Plus
ID afnnpegeelemflcnchmbpplpnminffkj
URL Chính Thức https://chrome.google.com/webstore/detail/tumblr-plus/afnnpegeelemflcnchmbpplpnminffkj
Mô tả This extension removes duplicated posts and already viewed post of your tumblr dashboard!
Kích Thước Tệp 51.53 KB
Số Lần Cài Đặt 278
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2013-11-27
Ngày Phát Hành 2013-11-27
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Fran Méndez
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}