Tumblr Plus

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

Tumblr Plusคืออะไร?

Tumblr Plus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Fran Méndez และคุณลักษณะหลักของมันคือ "This extension removes duplicated posts and already viewed post of your tumblr dashboard!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tumblr Plus

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}