TumblrFox
A super hacky dashboard filter for Tumblr
TumblrFoxคืออะไร?
TumblrFox เป็นส่วนขยายของ Chrome ที่พัฒนาโดย idelairre และคุณลักษณะหลักของมันคือ "A super hacky dashboard filter for Tumblr"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TumblrFox
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" ] } |