Examine source code of niat

Inspect and view changes in niat source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "niat",
  "description": "Let's niat achieve goal and closer to ALLAH.",
  "homepage_url": "https://www.kulitekno.com",
  "version": "0.0.1",
  "options_page": "app/options.html",
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "app/js/content.js"
      ],
      "css": [
        "app/css/content.css"
      ]
    }
  ],
  "chrome_url_overrides": {
    "newtab": "app/newtab.html"
  },
  "action": {
    "default_title": "niat",
    "default_popup": "app/panel.html",
    "default_icon": "assets/icon.png"
  },
  "storage": {
    "managed_schema": "storage/schema.json"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}