Mercury

Send Tweets from Roam

什麼是Mercury?

Mercury是由andyga0開發的Chrome擴展程式,該擴展的主要功能是“Send Tweets from Roam”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Mercury擴展crx文件

下載Mercury擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Mercury Mercury
ID fjclkljmpggljoimiocgcjhjgkcbknfm
官方網址 https://chromewebstore.google.com/detail/mercury/fjclkljmpggljoimiocgcjhjgkcbknfm
簡介 Send Tweets from Roam
檔案大小 992 KB
安裝次數 167
目前版本 0.0.5
更新時間 2021-08-10
上架時間 2020-12-23
評分 5.00/5 共 2 次評分
開發者 andyga0
電子郵箱 [email protected]
付費類型 free
擴展官網 https://twitter.com/andyga0
支援的語言 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'"
}