Django Admin Custom search
Perform bulk actions easily by getting multiple search results on a single page in django admin
Co je Django Admin Custom search?
Django Admin Custom search je rozšíření Chrome vyvinuté Arul Gupta, a jeho hlavní funkcí je „Perform bulk actions easily by getting multiple search results on a single page in django admin“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Django Admin Custom search
Stáhněte si soubory rozšíření Django Admin Custom search ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Django Admin Custom search |
ID | bbbhjljljjloblbcnhjjeklnbnhckobh |
Oficiální URL | https://chromewebstore.google.com/detail/django-admin-custom-searc/bbbhjljljjloblbcnhjjeklnbnhckobh |
Popis | Perform bulk actions easily by getting multiple search results on a single page in django admin |
Velikost souboru | 48.02 KB |
Počet instalací | 34 |
Aktuální Verze | 1.0.1 |
Poslední Aktualizace | 2014-12-18 |
Datum Vydání | 2014-12-18 |
Hodnocení | 3.00/5 Celkem 1 Hodnocení |
Vývojář | Arul Gupta |
Typ Platby | free |
Podporované Jazyky | 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 } ] } |