IATI Decipher

Browser plugins for deciphering IATI organisation files.

IATI Decipher란 무엇입니까?

IATI Decipher은(는) Publish What You Fund에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser plugins for deciphering IATI organisation files."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

IATI Decipher 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        A browser plugin to visualise any IATI organisation file listed on the IATI registry (https://iatiregistry.org).

 - Visualise all org-level budget data – either total, or filtered by recipient country, recipient region, or recipient organisation. Additionally, filter by budget line
 - Visualise org-level expenditure data, and filter by expense line
 - Export filtered budget or expenditure data to Excel
 - Search and filter documents                    

확장 프로그램 기본 정보

이름 IATI Decipher IATI Decipher
ID akignlamolglcjboilhajenkkkcnohjj
공식 URL https://chromewebstore.google.com/detail/iati-decipher/akignlamolglcjboilhajenkkkcnohjj
설명 Browser plugins for deciphering IATI organisation files.
파일 크기 1.95 MB
설치 횟수 106
현재 버전 1.5.2
최근 업데이트 2019-12-22
출시 날짜 2019-12-19
평점 5.00/5 총 3 개의 평점
개발자 Publish What You Fund
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://iati-decipher.publishwhatyoufund.org
개인정보 보호 정책 페이지 URL http://www.publishwhatyoufund.org/privacy-policy
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IATI Decipher",
    "version": "1.5.2",
    "description": "Browser plugins for deciphering IATI organisation files.",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs"
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "32": "img\/icon-32.png",
        "128": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "js\/js.js"
            ],
            "matches": [
                "*:\/\/*.iatiregistry.org\/dataset*",
                "*:\/\/*.iatiregistry.org\/publisher\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "css\/css.css",
        "webfonts\/*",
        "fonts\/*",
        "img\/*",
        "json\/*"
    ],
    "browser_action": {
        "default_icon": {
            "16": "img\/icon-16.png",
            "32": "img\/icon-32.png",
            "128": "img\/icon-128.png"
        },
        "default_title": "IATI Decipher",
        "default_popup": "html\/popup.html"
    }
}