Auto zoom out

この拡張機能はページ幅を検知し、ページを自動的に縮小します。chrome デフォルトのズーム機能とは違い、1% 単位で調整ができるので、無駄がありません。 自動で調整された値は好きなように変更することができます。 zoom・width…

What is Auto zoom out?

Auto zoom out is a Chrome extension developed by ajim, and its main feature is "この拡張機能はページ幅を検知し、ページを自動的に縮小します。chrome デフォルトのズーム機能とは違い、1% 単位で調整ができるので、無駄がありません。 自動で調整された値は好きなように変更することができます。 zoom・width…".

Extension Screenshots

screenshot
screenshot

Download Auto zoom out Extension CRX File

Download Auto zoom out extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        この拡張機能はページ幅を検知し、ページを自動的に縮小します。chrome デフォルトのズーム機能とは違い、1% 単位で調整ができるので、無駄がありません。
自動で調整された値は好きなように変更することができます。
zoom・width は基本的に拡張機能が自動で選択するため、気にする必要はありません。
サイズ調整したくないサイト(ドメイン)やページがあるなら、「このサイトを保存」または「このページを保存」ボタンを押してください。もうそのサイト(ドメイン)、ページを縮小することはありません。再び縮小するときはリセットしてください。
※ 初めて訪れたページでは、縮小にタイムラグが発生します。再度開く際には保存された縮小倍率を使用するため、スムーズに縮小されます。                    

Extension Basic Information

Name Auto zoom out Auto zoom out
ID gchfgcpbehcacfapajgkaoilllkfcapp
Official URL https://chromewebstore.google.com/detail/auto-zoom-out/gchfgcpbehcacfapajgkaoilllkfcapp
Description この拡張機能はページ幅を検知し、ページを自動的に縮小します。chrome デフォルトのズーム機能とは違い、1% 単位で調整ができるので、無駄がありません。 自動で調整された値は好きなように変更することができます。 zoom・width…
File Size 10.05 KB
Installation Count 374
Current Version 0.2
Last Updated 2021-04-11
Publish Date 2020-07-22
Rating 5.00/5 Total 1 Ratings
Developer ajim
Email [email protected]
Payment Type free
Extension Website https://github.com/ajim3796/Auto-zoom-out
Help Page URL https://github.com/ajim3796/Auto-zoom-out
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto zoom out",
    "version": "0.2",
    "browser_action": {
        "default_icon": "icon128.png",
        "default_title": "Auto zoom out",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ]
}