Roam Backlinks

Surface insights from your Roam database for the current web page.

Roam Backlinks là gì?

Roam Backlinks là một tiện ích mở rộng Chrome được phát triển bởi Roam Backlinks, và tính năng chính của nó là "Surface insights from your Roam database for the current web page.".

Ả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 Roam Backlinks

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

                        To get started, install the extension and pin it to your toolbar. 

Now, start browsing your Roam database using Chrome to build up an index of backlinks. Once you've visited some Roam pages, try opening one of the external links (not a [[Roam Page]]) in a new tab in Chrome and you should see a small box with the number 1 appear on the extension Roam Backlinks icon. This means that there is 1 backlink for the current page. 

Clicking on the Roam Backlinks icon in the toolbar will bring up a popup window which shows you the backlinks and allows you to click on them. 

If Roam is still open in another tab, clicking the backlinks will automatically open them in that tab. This is especially useful if you have a computer screen that is large enough to fit two browser windows side-by-side.  If you want to force a backlink to open in a new tab you can use the middle button of your mouse to click it.

Thanks to some ingenious code by @ViktorTabori, you can also shift+click to open pages in the Roam sidebar if Roam is already open in a tab.

PRIVACY INFO: This extension indexes your Roam database one page at a time as you visit each page and stores all the data locally so that none of your Roam database ever leaves your computer. If you uninstall the extension, the index will be completely deleted. The extension uses Google Analytics to collect anonymous aggregate statistics about how many people are using the extension. No private data ever leaves your computer.                    

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

Tên Roam Backlinks Roam Backlinks
ID kkcpmelohcenemcomfjaoilhmlellald
URL Chính Thức https://chrome.google.com/webstore/detail/roam-backlinks/kkcpmelohcenemcomfjaoilhmlellald
Mô tả Surface insights from your Roam database for the current web page.
Kích Thước Tệp 11.64 KB
Số Lần Cài Đặt 48
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2020-09-28
Ngày Phát Hành 2020-09-28
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Roam Backlinks
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/narphorium/roam_backlinks/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Roam Backlinks",
    "description": "Surface insights from your Roam database for the current web page.",
    "version": "0.1",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/roamresearch.com\/*"
            ],
            "js": [
                "content.js",
                "utils.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com https:\/\/ssl.google-analytics.com https:\/\/www.googletagmanager.com\/; object-src 'self'",
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "background.js",
            "utils.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Roam Backlinks",
        "default_popup": "popup.html"
    }
}