Procurios Platform

This extension is for users of the Procurios Platform.

Procurios Platform란 무엇입니까?

Procurios Platform은(는) https://procurios.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension is for users of the Procurios Platform."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Procurios Platform 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        With this extension you can manage your Procurios Platform quickly and efficiently. Do you want to quickly make a change to a blog post or form on your website? This extension is always visible in your browser and will take you to the right place in your platform. In addition, you can easily save emails as a contact moment in your CRM from Gmail.


The Procurios Platform extension offers this functionality:

- Go directly to your Procurios Platform.
- Add an e-mail as a contact moment to the CRM directly from Gmail.
- Go directly to the CMS to edit the current page.
- Go directly to the backend to edit an item on the page.
- Go to the overview of users to impersonate someone else.                    

확장 프로그램 기본 정보

이름 Procurios Platform Procurios Platform
ID kljnpjnncbkiaihadjlojnbakjlegfef
공식 URL https://chromewebstore.google.com/detail/procurios-platform/kljnpjnncbkiaihadjlojnbakjlegfef
설명 This extension is for users of the Procurios Platform.
파일 크기 374 KB
설치 횟수 494
현재 버전 2.1.4
최근 업데이트 2024-01-16
출시 날짜 2020-03-10
평점 5.00/5 총 6 개의 평점
개발자 https://procurios.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.procurios.com/
도움말 페이지 URL http://support.procurios.com/
지원되는 언어 en,nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "short_name": "Procurios",
    "version": "2.1.4",
    "description": "__MSG_extDescription__",
    "minimum_chrome_version": "10.0",
    "default_locale": "en",
    "icons": {
        "16": "assets\/icon-active16.png",
        "32": "assets\/icon-active32.png",
        "48": "assets\/icon-active48.png",
        "128": "assets\/icon-active128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/icon-inactive16.png",
            "32": "assets\/icon-inactive32.png",
            "48": "assets\/icon-inactive48.png"
        },
        "default_title": "__MSG_extName__",
        "default_popup": "popup\/html\/popup-login.html"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "js": [
                "content\/gmail.js"
            ],
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "*:\/\/*\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "web_accessible_resources": [
        "assets\/*",
        "content\/saveContactMoment.js"
    ]
}