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 là gì?

Salesforce Id CopyPasteGo là một tiện ích mở rộng Chrome được phát triển bởi https://www.summerlin.co, và tính năng chính của nó là "Copy the current Salesforce record's ID to the clipboard, or paste your way to the record's page from where you are!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Salesforce Id CopyPasteGo

Tải xuống các tệp mở rộng Salesforce Id CopyPasteGo dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Salesforce Id CopyPasteGo Salesforce Id CopyPasteGo
ID bjpilgfmggdkoincaadoojhaeobhjlim
URL Chính Thức https://chromewebstore.google.com/detail/salesforce-id-copypastego/bjpilgfmggdkoincaadoojhaeobhjlim
Mô tả Copy the current Salesforce record's ID to the clipboard, or paste your way to the record's page from where you are!
Kích Thước Tệp 13.72 KB
Số Lần Cài Đặt 370
Phiên Bản Hiện Tại 1.8.0
Cập Nhật Lần Cuối 2020-11-24
Ngày Phát Hành 2019-04-27
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://www.summerlin.co
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            }
        }
    }
}