Django Admin Custom search

Perform bulk actions easily by getting multiple search results on a single page in django admin

Co to jest Django Admin Custom search?

Django Admin Custom search to rozszerzenie Chrome opracowane przez Arul Gupta, a jego główną funkcją jest „Perform bulk actions easily by getting multiple search results on a single page in django admin”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Django Admin Custom search

Pobierz pliki rozszerzeń Django Admin Custom search w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Django Admin Custom search Django Admin Custom search
ID bbbhjljljjloblbcnhjjeklnbnhckobh
Oficjalny URL https://chromewebstore.google.com/detail/django-admin-custom-searc/bbbhjljljjloblbcnhjjeklnbnhckobh
Opis Perform bulk actions easily by getting multiple search results on a single page in django admin
Rozmiar pliku 48.02 KB
Liczba instalacji 34
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2014-12-18
Data Publikacji 2014-12-18
Ocena 3.00/5 Łącznie 1 Oceny
Deweloper Arul Gupta
Typ Płatności free
Obsługiwane Języki 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
        }
    ]
}