Ahegao

Ahegao

All the images are belong to two-dimensional art

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Ahegao",
  "description": "All the images are belong to two-dimensional art",
  "version": "1.0",
  "author": "Vivek Bhookya",
  "icons": {
    "16": "icons/ahegao_icon_16.png",
    "48": "icons/ahegao_icon_48.png",
    "128": "icons/ahegao_icon_128.png"
  },
  "browser_action": {
    "default_icon": "icons/ahegao_icon.png",
    "default_popup": "index.html",
    "default_title": "Ahegaoooo"
  },
  "background": {
    "scripts": [
      "links.js",
      "ahegao.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "links.js",
        "ahegao.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ]
}