TumblrFox

A super hacky dashboard filter for Tumblr

ما هو TumblrFox؟

TumblrFox هو إضافة Chrome تم تطويرها بواسطة idelairre، والميزة الرئيسية لها هي "A super hacky dashboard filter for Tumblr".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة TumblrFox

قم بتنزيل ملفات الامتداد TumblrFox بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        ** 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
عنوان URL الرسمي 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
عنوان صفحة المساعدة 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"
    ]
}