Harambe
A simple Chrome extension that replaces references to divine entities with the word "Harambe"
Τι είναι το Harambe;
Το Harambe είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 2shobhitsriv6, και η κύρια λειτουργία του είναι "A simple Chrome extension that replaces references to divine entities with the word "Harambe"".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Harambe
Λήψη αρχείων επέκτασης Harambe σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Replace all references to religious deities on the page with the word "Harambe." Change the title of the page to "HARAMBE WAS HERE." Try it out: Install the extension and go to http://www.everystudent.com/features/isthere.html Press the gorilla on the top right corner.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Harambe |
ID | abfkfmfjfimmgbfggbabahcmndbdafca |
Επίσημο URL | https://chromewebstore.google.com/detail/harambe/abfkfmfjfimmgbfggbabahcmndbdafca |
Περιγραφή | A simple Chrome extension that replaces references to divine entities with the word "Harambe" |
Μέγεθος Αρχείου | 85.67 KB |
Αριθμός Εγκαταστάσεων | 46 |
Τρέχουσα Έκδοση | 1.0.0 |
Τελευταία Ενημέρωση | 2016-09-06 |
Ημερομηνία Δημοσίευσης | 2016-09-06 |
Αξιολόγηση | 4.20/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | 2shobhitsriv6 |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Harambe", "version": "1.0.0", "description": "A simple Chrome extension that replaces references to divine entities with the word \"Harambe\"", "browser_action": { "default_title": "turn on Harambe" }, "icons": { "128": "Harambe.png" }, "background": { "scripts": [ "background.js", "jquery-3.1.0.js", "replaceText.js" ], "persistent:": false }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "background.js", "jquery-3.1.0.js", "replaceText.js" ] } ] } |