[Earthchie] ทำให้เว็บกลับมามีสี

[Earthchie] ทำให้เว็บกลับมามีสี

ทำให้เว็บทุกเว็บเป็นสีขาวดำ หรือทำให้เว็บที่เป็นขาวดำกลับมามีสี เหมาะกับผู้ที่ต้องการความชัดเจนของสีเพื่อแยกแยะรายละเอียด

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "[Earthchie] ทำให้เว็บกลับมามีสี",
  "description": "ทำให้เว็บทุกเว็บเป็นสีขาวดำ หรือทำให้เว็บที่เป็นขาวดำกลับมามีสี เหมาะกับผู้ที่ต้องการความชัดเจนของสีเพื่อแยกแยะรายละเอียด",
  "version": "1.2.2",
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_icon": "on.png",
    "default_title": "คลิกเพื่อเข้าโหมดขาวดำ"
  },
  "background": {
    "scripts": [
      "common.js",
      "main.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "common.js",
        "init.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}