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.”。
扩展截图
下载IATI Decipher扩展crx文件
下载IATI Decipher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| 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"
}
} | |