Marketo Browser Support

A Google Chrome Extension for supporting Marketo Guided/Email Templates locally in the browser.

Marketo Browser Support란 무엇입니까?

Marketo Browser Support은(는) tyrellcurryio에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Google Chrome Extension for supporting Marketo Guided/Email Templates locally in the browser."입니다.

확장 프로그램 스크린샷

screenshot

Marketo Browser Support 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension helps speed up the development process for Marketo Guided Landing Page Templates and Marketo Email Templates by automatically populating Marketo Variables in their correct places based on their Default Value in the Meta Tag when viewing the file locally. It will also recognize True/False Values in Boolean Meta Tags and populate the Value within the browser accordingly.

- No longer are you having to copy and paste your code within the Marketo Template Editor and clicking on the ‘preview’ option to see your template’s changes - you can now see your changes instantly within your browser!

- This extension works best when ‘Live Previewing’ your code using your favourite text editor!

- This extension will not interfere with the Marketo Software and does not make any changes to your local documents. This extension will only provide a ‘preview’ in your Google Chrome Browser when viewing documents locally that are containing Marketo Variables.

Please visit here for the FAQs: https://tyrellcurry.github.io/projectMBS/

This extension was brought to you by Tyrell Curry (https://github.com/tyrellcurry) who is part of the Creative Services team at MERGE (https://mergeworld.com/).                    

확장 프로그램 기본 정보

이름 Marketo Browser Support Marketo Browser Support
ID iinigaojmcejccagokaolgdfhelkemap
공식 URL https://chromewebstore.google.com/detail/marketo-browser-support/iinigaojmcejccagokaolgdfhelkemap
설명 A Google Chrome Extension for supporting Marketo Guided/Email Templates locally in the browser.
파일 크기 6.47 KB
설치 횟수 55
현재 버전 1.0.4
최근 업데이트 2023-02-06
출시 날짜 2022-08-24
개발자 tyrellcurryio
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://tyrellcurry.github.io/projectMBS/
도움말 페이지 URL https://forms.gle/mZs2PRuxko7S6bwCA
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Marketo Browser Support",
    "description": "A Google Chrome Extension for supporting Marketo Guided\/Email Templates locally in the browser.",
    "version": "1.0.4",
    "manifest_version": 3,
    "icons": {
        "128": "mbs-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "include_globs": [
                "*127.*",
                "*file:\/\/*",
                "*localhost:*"
            ],
            "js": [
                "mbs.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html"
    }
}