Mercury

Send Tweets from Roam

Mercury क्या है?

Mercury andyga0 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Send Tweets from Roam"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Mercury एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
}