trimtr

trimtr

Google翻訳で翻訳される文章を文ごとに改行したり、不要な改行・空白を削除したり見やすい形に整形します。This tool shapes sentences that will be translated in 'Google translate'.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "trimtr",
  "version": "1.3",
  "description": "Google翻訳で翻訳される文章を文ごとに改行したり、不要な改行・空白を削除したり見やすい形に整形します。This tool shapes sentences that will be translated in 'Google translate'.",
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://translate.google.com/*",
        "https://translate.google.co.jp/*",
        "https://www.deepl.com/*"
      ],
      "js": [
        "trimtr.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "manifest_version": 2
}