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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Perform bulk actions easily by getting multiple search results on a single page in django admin"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Django Admin Custom search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } ] } |