TumblrFox
A super hacky dashboard filter for Tumblr
TumblrFox क्या है?
TumblrFox idelairre द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A super hacky dashboard filter for Tumblr"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में TumblrFox एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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 |
सहायता पृष्ठ 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" ] } |