49 lines
1.3 KiB
Markdown
49 lines
1.3 KiB
Markdown
---
|
|
title: "chromeからfirefoxに移行した"
|
|
slug: "firefox"
|
|
date: 2025-07-14
|
|
tags: ["chrome", "firefox", "browser"]
|
|
draft: false
|
|
---
|
|
|
|
AIから勧められたのでchromeからfirefoxに移行しました。
|
|
|
|
chromeにとどまっていた理由は、翻訳機能です。
|
|
|
|
しかし、firefoxにも翻訳機能betaが来ていて、日本語が翻訳できるようになっていました。
|
|
|
|
[https://support.mozilla.org/ja/kb/website-translation](https://support.mozilla.org/ja/kb/website-translation)
|
|
|
|
chromeからの移行理由は、主に[gorhill/ublock](https://github.com/gorhill/ublock)です。
|
|
|
|
## chromeを使い続ける方法
|
|
|
|
私はfirefoxに移行しましたが、いくつか回避策があります。
|
|
|
|
`chrome://flags`でいくつかの機能のenable, disableを切り替えます。
|
|
|
|
```json
|
|
{
|
|
"url": "chrome://flags",
|
|
"purpose": "Maintain Manifest V2 extension support",
|
|
"versions": {
|
|
"138": {
|
|
"enabled": [
|
|
"Temporarily unexpire M137 flags",
|
|
"Allow legacy extension manifest versions"
|
|
],
|
|
"disabled": [
|
|
"Extension Manifest V2 Deprecation Warning Stage",
|
|
"Extension Manifest V2 Deprecation Disabled Stage",
|
|
"Extension Manifest V2 Deprecation Unsupported Stage"
|
|
]
|
|
},
|
|
"139": {
|
|
"enabled": [
|
|
"Temporarily unexpired M138 flags"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
```
|