Minimalist Fullscreen
This extension is a minimalists dream. Simply shift + double click, or shift + scroll to be fully imersed in your website.
Minimalist Fullscreenとは何ですか?
Minimalist Fullscreenはminimalistrooneyによって開発されたChromeの拡張機能で、その主な機能は「This extension is a minimalists dream. Simply shift + double click, or shift + scroll to be fully imersed in your website.」です。
拡張機能のスクリーンショット
Minimalist Fullscreen拡張機能のCRXファイルをダウンロード
Minimalist Fullscreen拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Shift + Double click or Shift + Scroll anywhere on the screen to Full Screen your chrome browser. Moving your mouse to the top of the page will cancel the effect for a completely seamless full screen integration. Popular websites like youtube and developer documentation websites become an immersive experience to browse. Features: * Shift + Double click for Full Screen * Shift + Click the page and scroll to activate minimalist for a more continuous application. * Fullscreen a youtube video anywhere on the page * Escape a fullscreen youtube video by simply moving the mouse to the top of the page. No longer needing to click the box in the bottom right hand corner If you would like to suggest new features please raise them here: Git hub: https://github.com/phillygogo/Minimalist
拡張機能の基本情報
名前 | Minimalist Fullscreen |
ID | lgldoaciahomlenlcifbkbbgdhihkboi |
公式URL | https://chromewebstore.google.com/detail/minimalist-fullscreen/lgldoaciahomlenlcifbkbbgdhihkboi |
説明 | This extension is a minimalists dream. Simply shift + double click, or shift + scroll to be fully imersed in your website. |
ファイルサイズ | 77.75 KB |
インストール数 | 51 |
現在のバージョン | 0.0.0.5 |
最終更新日 | 2023-12-11 |
公開日 | 2022-12-19 |
評価 | 5.00/5 合計 10 レビュー |
開発者 | minimalistrooney |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Minimalist Fullscreen", "version": "0.0.0.5", "description": "This extension is a minimalists dream. Simply shift + double click, or shift + scroll to be fully imersed in your website.", "action": { "default_popup": "popup.html" }, "permissions": [ "scripting", "storage" ], "host_permissions": [ "http:\/\/*\/", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/", "https:\/\/*\/*" ], "css": [ "\/css\/popup.css" ], "js": [ "\/js\/content-script.js" ] } ], "background": { "service_worker": "js\/background.js" }, "icons": { "16": "\/icons\/chromeIcons\/browser-icon-active-16.png", "48": "\/icons\/chromeIcons\/browser-icon-active-48.png", "128": "\/icons\/chromeIcons\/browser-icon-active-128.png" } } |