Mercury

Send Tweets from Roam

Mercury란 무엇입니까?

Mercury은(는) andyga0에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Send Tweets from Roam"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Mercury 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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'"
}