GIVE US ALL YOUR MONEY
Replaces brand tweets with "GIVE US ALL YOUR MONEY"
ما هو GIVE US ALL YOUR MONEY؟
GIVE US ALL YOUR MONEY هو إضافة Chrome تم تطويرها بواسطة Declan Hoare، والميزة الرئيسية لها هي "Replaces brand tweets with "GIVE US ALL YOUR MONEY"".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة GIVE US ALL YOUR MONEY
قم بتنزيل ملفات الامتداد GIVE US ALL YOUR MONEY بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Inspired by viral Content from Wizz Wizz, this browser extension will detect tweets from known brand accounts on Twitter, and replace the text with "GIVE US ALL YOUR MONEY". * Compatible with both Twitter designs (legacy and mobile) * Can be toggled on-the-fly by clicking the extension icon * Public Domain
معلومات أساسية عن التمديد
الاسم | GIVE US ALL YOUR MONEY |
ID | hojnhfncblgdolbnipododafipdkklej |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/give-us-all-your-money/hojnhfncblgdolbnipododafipdkklej |
الوصف | Replaces brand tweets with "GIVE US ALL YOUR MONEY" |
حجم الملف | 41.76 KB |
عدد التثبيتات | 11 |
النسخة الحالية | 2 |
آخر تحديث | 2019-04-13 |
تاريخ النشر | 2019-04-13 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | Declan Hoare |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/DeclanHoare/giveusallyourmoney |
عنوان صفحة المساعدة | https://github.com/DeclanHoare/giveusallyourmoney/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GIVE US ALL YOUR MONEY", "author": "Declan Hoare", "description": "Replaces brand tweets with \"GIVE US ALL YOUR MONEY\"", "version": "2", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "page_action": { "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "permissions": [ "https:\/\/*.twitter.com\/", "http:\/\/*.twitter.com\/", "storage" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*.twitter.com\/*", "http:\/\/*.twitter.com\/*" ], "js": [ "scripts\/giveusallyourmoney.js" ] } ], "web_accessible_resources": [ "data\/brands.txt" ], "background": { "scripts": [ "scripts\/background.js" ], "persistent": false } } |