法規亦毒氣

法規亦毒氣

將網頁中的法規與條號都轉變成連結,以利快速查閱指定條文。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "法規亦毒氣",
  "description": "將網頁中的法規與條號都轉變成連結,以利快速查閱指定條文。",
  "version": "2.0.5",
  "author": "kong0107",
  "homepage_url": "https://g0v.github.io/laweasyread-front/",
  "options_ui": {
    "page": "options_ui/index.html",
    "open_in_tab": true
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "activeTab",
    "alarms",
    "storage"
  ],
  "background": {
    "service_worker": "browser/background.js"
  },
  "action": {
    "default_popup": "browser/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/kong-util.js",
        "lib/storage.js",
        "LER.front.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "https://law.moj.gov.tw/*"
      ],
      "exclude_matches": [
        "https://law.moj.gov.tw/Eng/*",
        "https://law.moj.gov.tw/*/LawAllPara.aspx*",
        "https://law.moj.gov.tw/*media=print*"
      ],
      "js": [
        "content_scripts/moj.law.js"
      ]
    },
    {
      "matches": [
        "https://lis.ly.gov.tw/lglawc/lawsingle?*"
      ],
      "js": [
        "content_scripts/ly.lis.js"
      ],
      "css": [
        "content_scripts/ly.lis.css"
      ]
    },
    {
      "matches": [
        "https://judgment.judicial.gov.tw/FJUD/*"
      ],
      "js": [
        "content_scripts/judicial.judgement.js"
      ],
      "css": [
        "content_scripts/judicial.judgement.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts/main.js"
      ],
      "all_frames": true
    }
  ]
}