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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Perform bulk actions easily by getting multiple search results on a single page in django admin"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Django Admin Custom search 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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
        }
    ]
}