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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}