ONTRAPORT Power User Extension

This extension provides unofficial extra features for power users of ONTRAPORT.

ONTRAPORT Power User Extension란 무엇입니까?

ONTRAPORT Power User Extension은(는) ONTRAPORT Labs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension provides unofficial extra features for power users of ONTRAPORT."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

ONTRAPORT Power User Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        - Keep the Top Level Navigation onscreen at all times.
- Keep the current Release and Account Number onscreen at all times.
- Setup Per-Account customizations such as color theming and custom logo.                    

확장 프로그램 기본 정보

이름 ONTRAPORT Power User Extension ONTRAPORT Power User Extension
ID ddccabpjgecnegndgkghilemjpbocjpd
공식 URL https://chromewebstore.google.com/detail/ontraport-power-user-exte/ddccabpjgecnegndgkghilemjpbocjpd
설명 This extension provides unofficial extra features for power users of ONTRAPORT.
파일 크기 16.03 MB
설치 횟수 346
현재 버전 1.109
최근 업데이트 2020-02-20
출시 날짜 2020-02-20
평점 5.00/5 총 4 개의 평점
개발자 ONTRAPORT Labs
결제 유형 free
개인정보 보호 정책 페이지 URL https://ontraport.com/legal
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ONTRAPORT Power User Extension",
    "description": "This extension provides unofficial extra features for power users of ONTRAPORT.",
    "version": "1.109",
    "browser_action": {
        "default_title": "Click to edit options",
        "default_icon": "icon.png",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.ontraport.com\/*"
            ],
            "css": [
                "content_script\/styles.css"
            ],
            "js": [
                "content_script\/jquery.js",
                "content_script\/jquery.initialize.min.js",
                "content_script\/script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ]
}