TumblrFox

A super hacky dashboard filter for Tumblr

什麼是TumblrFox?

TumblrFox是由idelairre開發的Chrome擴展程式,該擴展的主要功能是“A super hacky dashboard filter for Tumblr”。

擴展截圖

screenshot
screenshot

下載TumblrFox擴展crx文件

下載TumblrFox擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        ** this is a pre-release unstable version **

TumblrFox modifies the Tumblr UI so you can filter, search and order your posts.

Features:
- Filter dashboard posts by type, originality, and nsfw content
- Filter liked posts by all of the above and order by date and popularity.
- Full text search for liked posts and user posts.
- Sort followed tumblelogs and paginate with infinite scroll.                    

擴展基本資訊

名稱 TumblrFox TumblrFox
ID feeecimccgpgmajhebcelhofijkdngkf
官方網址 https://chromewebstore.google.com/detail/tumblrfox/feeecimccgpgmajhebcelhofijkdngkf
簡介 A super hacky dashboard filter for Tumblr
檔案大小 319 KB
安裝次數 241
目前版本 0.6.8
更新時間 2017-09-23
上架時間 2017-09-22
評分 4.75/5 共 4 次評分
開發者 idelairre
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/idelairre/TumblrFox
說明頁面URL https://github.com/idelairre/TumblrFox/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TumblrFox",
    "short_name": "TumblrFox",
    "description": "A super hacky dashboard filter for Tumblr",
    "version": "0.6.8",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/fox.png",
        "128": "images\/fox.png"
    },
    "background": {
        "scripts": [
            "scripts\/vendor.bundle.js",
            "scripts\/background.js"
        ]
    },
    "options_ui": {
        "page": "pages\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.tumblr.com\/*"
            ],
            "css": [
                "contentScripts\/styles\/popover.css"
            ],
            "js": [
                "scripts\/vendor.bundle.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "downloads",
        "tabs",
        "idle",
        "storage",
        "unlimitedStorage",
        "http:\/\/api.tumblr.com\/*",
        "https:\/\/tumblr.com\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/cdn.firebase.com https:\/\/*.firebaseio.com; object-src 'self'",
    "web_accessible_resources": [
        "pages\/chrome_ex_oauth.html",
        "images\/*.png",
        "scripts\/vendor.bundle.js",
        "scripts\/fox-bootstrap.js"
    ]
}