Fluid Engine Tablet Spacing Fixer
Makes Squarespace's mobile breakpoint larger so that you can fix Fluid Engine spacing issues on screen sizes between mobile & tablet
Fluid Engine Tablet Spacing Fixerとは何ですか?
Fluid Engine Tablet Spacing Fixerはhttps://schwartz-edmisten.comによって開発されたChromeの拡張機能で、その主な機能は「Makes Squarespace's mobile breakpoint larger so that you can fix Fluid Engine spacing issues on screen sizes between mobile & tablet」です。
拡張機能のスクリーンショット
Fluid Engine Tablet Spacing Fixer拡張機能のCRXファイルをダウンロード
Fluid Engine Tablet Spacing Fixer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
If you are using Squarespace 7.1's new Fluid Engine editor, you might have noticed that your text blocks get TONS of space between them on screen sizes between 600px and 767px (between mobile and tablet) with no way to remove it. This is because of the way Fluid Engine maps blocks to the grid. The remedy is to map blocks to the grid on a screen size of 767px. When mapping them at this width, the spacing issues are resolved. This extension automatically makes your 7.1 site's mobile view 767px wide, so you don't have to resize the window yourself. It also provides a "mobile preview" mode, that shows the original mobile view in additional to the 767px editing view, so you can see what your site looks like across more screen sizes. This will provide a much needed fix until (hopefully) Squarespace gives us an editable tablet view in the future. Then at that time you can uninstall this extension.
拡張機能の基本情報
名前 | Fluid Engine Tablet Spacing Fixer |
ID | gemmfnoajaghnaddkccmekbchdgckdab |
公式URL | https://chromewebstore.google.com/detail/fluid-engine-tablet-spaci/gemmfnoajaghnaddkccmekbchdgckdab |
説明 | Makes Squarespace's mobile breakpoint larger so that you can fix Fluid Engine spacing issues on screen sizes between mobile & tablet |
ファイルサイズ | 9.33 KB |
インストール数 | 1,203 |
現在のバージョン | 0.1.5 |
最終更新日 | 2023-08-03 |
公開日 | 2022-09-22 |
評価 | 4.89/5 合計 9 レビュー |
開発者 | https://schwartz-edmisten.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://schwartz-edmisten.com |
ヘルプページのURL | https://schwartz-edmisten.com/fluid-engine-tablet-spacing-support |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fluid Engine Tablet Spacing Fixer", "description": "Makes Squarespace's mobile breakpoint larger so that you can fix Fluid Engine spacing issues on screen sizes between mobile & tablet", "version": "0.1.5", "manifest_version": 3, "permissions": [ "scripting", "activeTab" ], "host_permissions": [ "*:\/\/*.squarespace.com\/config*" ], "content_scripts": [ { "matches": [ "*:\/\/*.squarespace.com\/config*" ], "css": [ "style.css" ], "js": [ "script.js" ] } ], "action": { "default_popup": "popup.html", "default_title": "Fix Fluid Engine Tablet Spacing" }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |