Salesforce.com Id Clipper

Helps you get Salesforce.com Ids from records and links to your clipboard

Salesforce.com Id Clipperคืออะไร?

Salesforce.com Id Clipper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gokubi และคุณลักษณะหลักของมันคือ "Helps you get Salesforce.com Ids from records and links to your clipboard"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce.com Id Clipper

ดาวน์โหลดไฟล์ส่วนขยาย Salesforce.com Id Clipper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This is a Chrome Extension that works with Salesforce.com. *Now updated to work with lightning and Communities!*

If you are on a Salesforce.com record page, that is a page where the Salesforce.com
URL conatins a record Id: 

* Click the scissors icon once to clip the Id to your clipboard.
* Click it again and you'll get the 18 character verison of the id.
* Click it again to get a cleaned version of the URL in the address bar.

The icon turns green when you successfully clip the Id, and shows an 18 
when you get the 18 character version and 'Link' when you get the link.

You may also right click any link to a Salesforce.com record URL on any webpage
and do two actions:

* Clip the Id (15 or 18 characters), just as you would from a record page
* Get a clean record URL, dropping any parameters after the Id, like search position

* Works with Lightning
* Works with Communities
* Works with VF pages with an id on the querystring, and User profile pages.
* Thanks to boxfoot and Jeff Douglas for code contributions!

To install from Chrome Store:

https://chrome.google.com/webstore/detail/hfiffenhnefppjhloglpebefjlbhoeai

Source code is on github:

https://github.com/gokubi/Salesforce-Id-Clipper-Chrome-Extension

To install unpackaged:

1. Download the source to your computer
2. Go to Chrome
3. Window > Extensions
4. Click the + next to Developer Mode
5. Load unpacked extension
6. Browse to the downloaded directory                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Salesforce.com Id Clipper Salesforce.com Id Clipper
ID hfiffenhnefppjhloglpebefjlbhoeai
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/salesforcecom-id-clipper/hfiffenhnefppjhloglpebefjlbhoeai
คำอธิบาย Helps you get Salesforce.com Ids from records and links to your clipboard
ขนาดไฟล์ 54.81 KB
จำนวนการติดตั้ง 2,745
เวอร์ชันปัจจุบัน 3.2
อัปเดตครั้งล่าสุด 2017-04-19
วันที่เผยแพร่ 2017-04-19
คะแนน 4.29/5 รวมทั้งหมด 38 คะแนน
ผู้พัฒนา gokubi
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce.com Id Clipper",
    "version": "3.2",
    "description": "Helps you get Salesforce.com Ids from records and links to your clipboard",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "clipper.png",
        "default_title": "Clip this Id!"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "clipboardWrite",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "icons": {
        "128": "clipper_128.png"
    }
}