Salesforce Org Bookmarks

Displays bookmarks related to current Salesforce org

Salesforce Org Bookmarksとは何ですか?

Salesforce Org BookmarksはShai Fisherによって開発されたChromeの拡張機能で、その主な機能は「Displays bookmarks related to current Salesforce org」です。

拡張機能のスクリーンショット

screenshot

Salesforce Org Bookmarks拡張機能のCRXファイルをダウンロード

Salesforce Org Bookmarks拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Salesforce Org Bookmarks Salesforce Org Bookmarks
ID jbkjfboldjlppbhmfgennndbdcbokbka
公式URL https://chromewebstore.google.com/detail/salesforce-org-bookmarks/jbkjfboldjlppbhmfgennndbdcbokbka
説明 Displays bookmarks related to current Salesforce org
ファイルサイズ 83.5 KB
インストール数 23
現在のバージョン 1.4.1
最終更新日 2022-11-07
公開日 2019-03-07
評価 5.00/5 合計 1 レビュー
開発者 Shai Fisher
Eメール [email protected]
支払い方法 free
対応言語 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"
    ]
}