為什麼你們就是不能加個空格呢?

為什麼你們就是不能加個空格呢?

自動在網頁中所有的中文字和半形的英文、數字、符號之間插入空白。(攤手)沒辦法,處女座都有強迫症。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "version": "4.0.7",
  "default_locale": "zh_TW",
  "description": "__MSG_extension_description__",
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "browser_action": {
    "default_icon": "images/icon_19.png",
    "default_title": "__MSG_god_of_spacing__",
    "default_popup": "pages/popup.html"
  },
  "author": "Vinta",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "js": [
        "vendors/pangu/pangu.min.js",
        "js/content_script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "minimum_chrome_version": "26.0",
  "offline_enabled": true,
  "options_page": "pages/options.html",
  "permissions": [
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*",
    "file:///*/*"
  ],
  "short_name": "__MSG_god_of_spacing__"
}