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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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 } ] } |