GIVE US ALL YOUR MONEY
Replaces brand tweets with "GIVE US ALL YOUR MONEY"
GIVE US ALL YOUR MONEY क्या है?
GIVE US ALL YOUR MONEY Declan Hoare द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces brand tweets with "GIVE US ALL YOUR MONEY""।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GIVE US ALL YOUR MONEY एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ URL | 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 } } |