Mercury
Send Tweets from Roam
Что такое Mercury?
Mercury - это расширение Chrome, разработанное andyga0, и его основная функция - "Send Tweets from Roam".
Снимки экрана расширения
Скачать файл CRX расширения Mercury
Скачайте файлы расширений 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 |
Электронная почта | [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'" } |