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 هو إضافة Chrome تم تطويرها بواسطة Arul Gupta، والميزة الرئيسية لها هي "Perform bulk actions easily by getting multiple search results on a single page in django admin".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Django Admin Custom search
قم بتنزيل ملفات الامتداد Django Admin Custom search بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 } ] } |