Mercury
Send Tweets from Roam
Mercuryとは何ですか?
Mercuryはandyga0によって開発されたChromeの拡張機能で、その主な機能は「Send Tweets from Roam」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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'" } |