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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Fluid Engine Tablet Spacing Fixer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
이메일 [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"
    }
}