Twitch Pasta Repository
Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages
Что такое Twitch Pasta Repository?
Twitch Pasta Repository - это расширение Chrome, разработанное Robert Ursua, и его основная функция - "Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages".
Снимки экрана расширения
Скачать файл CRX расширения Twitch Pasta Repository
Скачайте файлы расширений Twitch Pasta Repository в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
REQUIRES BETTER TWITCH TV TO WORK Adds save and load functionalities in twitch chat to easily store and access twitch copy pastas / messages. Adds copy button beside every message for easy copying of chat messages.
Основная информация о расширении
Название | |
ID | mjcbdimkpidbhoaahdcoffmajoofgbma |
Официальный URL | https://chromewebstore.google.com/detail/twitch-pasta-repository/mjcbdimkpidbhoaahdcoffmajoofgbma |
Описание | Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages |
Размер файла | 136 KB |
Количество установок | 223 |
Текущая Версия | 0.0.1 |
Последнее Обновление | 2016-12-15 |
Дата публикации | 2016-12-15 |
Рейтинг | 4.67/5 Всего 3 оценок |
Разработчик | Robert Ursua |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Pasta Repository", "description": "Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages", "version": "0.0.1", "content_scripts": [ { "matches": [ "*:\/\/www.twitch.tv\/*" ], "js": [ "jquery.js", "copybutton.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/www.twitch.tv\/*" ], "css": [ "pastavault.css" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "icon128.png", "default_popup": "popup.html", "default_title": "Twitch Pasta Repository" }, "permissions": [ "activeTab", "storage" ], "web_accessible_resources": [ "webAccessImgs\/copy_icon.png", "webAccessImgs\/delete_icon.png" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |