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文件

下載Marketo Browser Support擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}