Mercury

Send Tweets from Roam

Mercury là gì?

Mercury là một tiện ích mở rộng Chrome được phát triển bởi andyga0, và tính năng chính của nó là "Send Tweets from Roam".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        NOTE: This Extension is no longer maintained. For similar capabilities, please check out roamjs.com and look for the twitter plugin

This extension allows for users to  seamlessly send blocks as tweet threads from Roam Research.

Features include:
- Sending blocks nested under a specified tag as a tweet thread
- Replying to tweets by nesting blocks under a twitter URL.
- Character count of each block
- Tweet receipt (tweet url) upon successfully sending tweet
- Templated tweet receipts
- Image embed tweets

Upcoming Features:
- Scheduling Tweets

What is Roam Research?
Roam Research is a new tool for networked thought allowing users to form connections between different ideas and concepts.

The purpose of this extension is provide users of Roam Research with a path to output these thoughts in the form of organized tweet threads via blocks.                    

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

Tên Mercury Mercury
ID fjclkljmpggljoimiocgcjhjgkcbknfm
URL Chính Thức https://chromewebstore.google.com/detail/mercury/fjclkljmpggljoimiocgcjhjgkcbknfm
Mô tả Send Tweets from Roam
Kích Thước Tệp 992 KB
Số Lần Cài Đặt 167
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2021-08-10
Ngày Phát Hành 2020-12-23
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển andyga0
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://twitter.com/andyga0
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mercury",
    "description": "Send Tweets from Roam",
    "version": "0.0.5",
    "web_accessible_resources": [
        "*.svg"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/roamresearch.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/image16.png",
            "24": "images\/image24.png",
            "32": "images\/image32.png"
        },
        "default_title": "Mercury",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "mainEvent.js",
            "auth.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/image16.png",
        "32": "images\/image32.png",
        "48": "images\/image48.png",
        "128": "images\/image128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'"
}