TumblrFox
A super hacky dashboard filter for Tumblr
TumblrFoxとは何ですか?
TumblrFoxはidelairreによって開発されたChromeの拡張機能で、その主な機能は「A super hacky dashboard filter for Tumblr」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" ] } |