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开发的Chrome扩展程序,该扩展的主要功能是“Replaces brand tweets with "GIVE US ALL YOUR MONEY"”。
扩展截图
下载GIVE US ALL YOUR MONEY扩展crx文件
下载GIVE US ALL YOUR MONEY扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 } } |