Salesforce Org Bookmarks

Displays bookmarks related to current Salesforce org

Salesforce Org Bookmarks là gì?

Salesforce Org Bookmarks là một tiện ích mở rộng Chrome được phát triển bởi Shai Fisher, và tính năng chính của nó là "Displays bookmarks related to current Salesforce org".

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

screenshot

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

Tải xuống các tệp mở rộng Salesforce Org Bookmarks 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

                        SF Org Bookmarks stores your bookmarks for each Salesforce Org, and displays those bookmarks each time you log in this Org,
So your don't get confused with other org's bookmarks, and can reach any page you would like faster.

The bookmarks are stored in your local device (We do not have any access to it).

New features and updates:
1.3.0: 
Transfer all URLs of one org to a new SF instance (e.g. eu5 -> na6);
Detect Org id in Lightning (beta)
1.3.3:
Fix title capture in Lightning
1.4.0:
View and manage orgs list
Copy URL to clipboard
1.4.1:
Improve automatic name of new bookmark                    

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

Tên Salesforce Org Bookmarks Salesforce Org Bookmarks
ID jbkjfboldjlppbhmfgennndbdcbokbka
URL Chính Thức https://chromewebstore.google.com/detail/salesforce-org-bookmarks/jbkjfboldjlppbhmfgennndbdcbokbka
Mô tả Displays bookmarks related to current Salesforce org
Kích Thước Tệp 83.5 KB
Số Lần Cài Đặt 23
Phiên Bản Hiện Tại 1.4.1
Cập Nhật Lần Cuối 2022-11-07
Ngày Phát Hành 2019-03-07
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Shai Fisher
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce Org Bookmarks",
    "description": "Displays bookmarks related to current Salesforce org",
    "version": "1.4.1",
    "browser_action": {
        "default_icon": "sfob-16.png",
        "default_popup": "bookmarksbar.html"
    },
    "icons": {
        "16": "sfob-16.png",
        "128": "sfob-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.salesforce.com\/*",
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.force.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        "getorg.js"
    ]
}