GIVE US ALL YOUR MONEY
Replaces brand tweets with "GIVE US ALL YOUR MONEY"
GIVE US ALL YOUR MONEY là gì?
GIVE US ALL YOUR MONEY là một tiện ích mở rộng Chrome được phát triển bởi Declan Hoare, và tính năng chính của nó là "Replaces brand tweets with "GIVE US ALL YOUR MONEY"".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng GIVE US ALL YOUR MONEY
Tải xuống các tệp mở rộng GIVE US ALL YOUR MONEY dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GIVE US ALL YOUR MONEY |
ID | hojnhfncblgdolbnipododafipdkklej |
URL Chính Thức | https://chromewebstore.google.com/detail/give-us-all-your-money/hojnhfncblgdolbnipododafipdkklej |
Mô tả | Replaces brand tweets with "GIVE US ALL YOUR MONEY" |
Kích Thước Tệp | 41.76 KB |
Số Lần Cài Đặt | 11 |
Phiên Bản Hiện Tại | 2 |
Cập Nhật Lần Cuối | 2019-04-13 |
Ngày Phát Hành | 2019-04-13 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Declan Hoare |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/DeclanHoare/giveusallyourmoney |
URL Trang Trợ Giúp | https://github.com/DeclanHoare/giveusallyourmoney/issues |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |