Salesforce Id CopyPasteGo

Copy the current Salesforce record's ID to the clipboard, or paste your way to the record's page from where you are!

Salesforce Id CopyPasteGo란 무엇입니까?

Salesforce Id CopyPasteGo은(는) https://www.summerlin.co에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy the current Salesforce record's ID to the clipboard, or paste your way to the record's page from where you are!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Salesforce Id CopyPasteGo 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Navigate Salesforce records by ID with keyboard shortcuts and the right-click menu:
- [NEW] Copy list views with a single click
- Alt-C copies the current page's record ID
- Alt-Shift-C copies the current page's cleaned up URL
- Alt-V opens the record page for the ID on your clipboard (copied from any source)
- Alt-B opens the record page for the ID on your clipboard in a new tab
- Right click on any Salesforce link to copy just the Salesforce ID from it or grab a clean version of the URL

All keyboard shortcuts can be configured from Chrome's Extension Shortcuts page. This extension works with Classic and Lightning interfaces.                    

확장 프로그램 기본 정보

이름 Salesforce Id CopyPasteGo Salesforce Id CopyPasteGo
ID bjpilgfmggdkoincaadoojhaeobhjlim
공식 URL https://chromewebstore.google.com/detail/salesforce-id-copypastego/bjpilgfmggdkoincaadoojhaeobhjlim
설명 Copy the current Salesforce record's ID to the clipboard, or paste your way to the record's page from where you are!
파일 크기 13.72 KB
설치 횟수 370
현재 버전 1.8.0
최근 업데이트 2020-11-24
출시 날짜 2019-04-27
평점 5.00/5 총 4 개의 평점
개발자 https://www.summerlin.co
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce Id CopyPasteGo",
    "version": "1.8.0",
    "description": "Copy the current Salesforce record's ID to the clipboard, or paste your way to the record's page from where you are!",
    "background": {
        "scripts": [
            "shared.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.cloudforce.com\/*"
            ],
            "all_frames": true,
            "js": [
                "shared.js",
                "page.js"
            ],
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "default_icon": "images\/sf-copypaste16.png",
        "default_title": "Salesforce ID CopyPasteGo"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "clipboardWrite",
        "clipboardRead",
        "https:\/\/*.force.com\/*",
        "https:\/\/*.salesforce.com\/*",
        "https:\/\/*.cloudforce.com\/*"
    ],
    "web_accessible_resources": [
        "images\/sf-copypaste128.png",
        "images\/sf-copypaste48.png",
        "images\/sf-copypaste16.png"
    ],
    "icons": {
        "128": "images\/sf-copypaste128.png",
        "48": "images\/sf-copypaste48.png",
        "16": "images\/sf-copypaste16.png"
    },
    "commands": {
        "copyRecordId": {
            "description": "Copy the record ID",
            "suggested_key": {
                "default": "Alt+C"
            }
        },
        "copyCleanUrl": {
            "description": "Copy a clean URL",
            "suggested_key": {
                "default": "Shift+Alt+C"
            }
        },
        "pasteRecordId": {
            "description": "Paste the record ID",
            "suggested_key": {
                "default": "Alt+V"
            }
        },
        "pasteRecordIdToNewTab": {
            "description": "Paste the record ID to a new Tab",
            "suggested_key": {
                "default": "Alt+B"
            }
        }
    }
}