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"".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης GIVE US ALL YOUR MONEY

Λήψη αρχείων επέκτασης 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 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
    }
}