Arabic Rumour Tracker by Akeed Online

Arabic Rumour Tracker by Akeed Online

An early version of a news verification extension, developed by Akeed Online Ltd.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Arabic Rumour Tracker by Akeed Online",
  "description": "An early version of a news verification extension, developed by Akeed Online Ltd.",
  "version": "0.5.14",
  "browser_action": {
    "default_title": "Check the authenticity of what you read online in the real time, mostly focused on contents and news related to the Arabic world."
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "background": {
    "scripts": [
      "jquery.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*",
        "*://*.twitter.com/*"
      ],
      "js": [
        "jquery.js",
        "md5.js",
        "crc32.js",
        "bootstrap.js",
        "shared.js",
        "report.js"
      ]
    },
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "facebook.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "akeed.css",
    "jquery.js",
    "bootstrap.js",
    "akeed-modal.html",
    "akeed-report-modal.html",
    "img/*"
  ],
  "permissions": [
    "activeTab",
    "http://akeed.onl/",
    "https://akeed.onl/",
    "http://akeed.info/",
    "https://akeed.info/",
    "storage"
  ],
  "icons": {
    "128": "icon.png"
  }
}