GIVE US ALL YOUR MONEY
Replaces brand tweets with "GIVE US ALL YOUR MONEY"
What is GIVE US ALL YOUR MONEY?
GIVE US ALL YOUR MONEY is a Chrome extension developed by Declan Hoare, and its main feature is "Replaces brand tweets with "GIVE US ALL YOUR MONEY"".
Extension Screenshots
Download GIVE US ALL YOUR MONEY Extension CRX File
Download GIVE US ALL YOUR MONEY extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | GIVE US ALL YOUR MONEY |
ID | hojnhfncblgdolbnipododafipdkklej |
Official URL | https://chromewebstore.google.com/detail/give-us-all-your-money/hojnhfncblgdolbnipododafipdkklej |
Description | Replaces brand tweets with "GIVE US ALL YOUR MONEY" |
File Size | 41.76 KB |
Installation Count | 11 |
Current Version | 2 |
Last Updated | 2019-04-13 |
Publish Date | 2019-04-13 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Declan Hoare |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/DeclanHoare/giveusallyourmoney |
Help Page URL | https://github.com/DeclanHoare/giveusallyourmoney/issues |
Supported Languages | 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 } } |