IATI Decipher

Browser plugins for deciphering IATI organisation files.

Vad är IATI Decipher?

IATI Decipher är en Chrome-tillägg utvecklad av Publish What You Fund, och dess huvudfunktion är "Browser plugins for deciphering IATI organisation files.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner IATI Decipher-förlängningens CRX-fil

Ladda ner IATI Decipher-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn IATI Decipher IATI Decipher
ID akignlamolglcjboilhajenkkkcnohjj
Officiell webbadress https://chromewebstore.google.com/detail/iati-decipher/akignlamolglcjboilhajenkkkcnohjj
Beskrivning Browser plugins for deciphering IATI organisation files.
Filstorlek 1.95 MB
Antal Installationer 106
Aktuell Version 1.5.2
Senast Uppdaterad 2019-12-22
Publiceringsdatum 2019-12-19
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare Publish What You Fund
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://iati-decipher.publishwhatyoufund.org
URL till Sekretesspolicy Sidan http://www.publishwhatyoufund.org/privacy-policy
Stödda Språk 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"
    }
}