Django Admin Custom search
Perform bulk actions easily by getting multiple search results on a single page in django admin
Django Admin Custom search là gì?
Django Admin Custom search là một tiện ích mở rộng Chrome được phát triển bởi Arul Gupta, và tính năng chính của nó là "Perform bulk actions easily by getting multiple search results on a single page in django admin".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Django Admin Custom search
Tải xuống các tệp mở rộng Django Admin Custom search dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Django Admin Custom search |
ID | bbbhjljljjloblbcnhjjeklnbnhckobh |
URL Chính Thức | https://chromewebstore.google.com/detail/django-admin-custom-searc/bbbhjljljjloblbcnhjjeklnbnhckobh |
Mô tả | Perform bulk actions easily by getting multiple search results on a single page in django admin |
Kích Thước Tệp | 48.02 KB |
Số Lần Cài Đặt | 34 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2014-12-18 |
Ngày Phát Hành | 2014-12-18 |
Đánh Giá | 3.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Arul Gupta |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } ] } |