Django Admin Custom search
Perform bulk actions easily by getting multiple search results on a single page in django admin
Django Admin Custom searchとは何ですか?
Django Admin Custom searchはArul Guptaによって開発されたChromeの拡張機能で、その主な機能は「Perform bulk actions easily by getting multiple search results on a single page in django admin」です。
拡張機能のスクリーンショット
Django Admin Custom search拡張機能のCRXファイルをダウンロード
Django Admin Custom search拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Ever wanted to perform a bulk action on users from multiple search queries in Django admin, but found it too tedious a job? You could now get the results from multiple search queries collated on the same page and perform bulk action on all of them at once. Just click on the extension button on any Django search page and submit a comma separated list of the search queries to get all the search results. The extension should work on any Django list page with a search option.
拡張機能の基本情報
名前 | Django Admin Custom search |
ID | bbbhjljljjloblbcnhjjeklnbnhckobh |
公式URL | https://chromewebstore.google.com/detail/django-admin-custom-searc/bbbhjljljjloblbcnhjjeklnbnhckobh |
説明 | Perform bulk actions easily by getting multiple search results on a single page in django admin |
ファイルサイズ | 48.02 KB |
インストール数 | 34 |
現在のバージョン | 1.0.1 |
最終更新日 | 2014-12-18 |
公開日 | 2014-12-18 |
評価 | 3.00/5 合計 1 レビュー |
開発者 | Arul Gupta |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Django Admin Custom search", "version": "1.0.1", "manifest_version": 2, "browser_action": { "default_icon": { "19": "icons\/icon19.png", "38": "icons\/icon38.png" }, "default_title": "Django Admin Custom Search", "default_popup": "popup.html" }, "description": "Perform bulk actions easily by getting multiple search results on a single page in django admin", "author": "Arul Gupta", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/admin\/*", "https:\/\/*\/admin\/*" ], "js": [ "js\/jquery.js", "js\/script.js" ], "css": [ "css\/script.css" ], "all_frames": true } ] } |