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 } ] } |