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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } |