Malapropism
Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)
Τι είναι το Malapropism;
Το Malapropism είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον isaaclandersen, και η κύρια λειτουργία του είναι "Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Malapropism
Λήψη αρχείων επέκτασης Malapropism σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
A prank extension which replaces words with their commonly mistaken for substitutes. (ex. cite -> site) Malapropism makes the internet a slightly more infuriating place, making the victim (user) question his or her own proper grammar/sanity. Install on the computers of: Friends, Enemies, Parents, Co-Workers, Significant Others, Grammar Nazi's
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | alfflmhklceecdngpiphmkjmohcgjbig |
Επίσημο URL | https://chrome.google.com/webstore/detail/malapropism/alfflmhklceecdngpiphmkjmohcgjbig |
Περιγραφή | Replaces words with their commonly mistaken for substitutes. (ex. cite -> site) |
Μέγεθος Αρχείου | 13.54 KB |
Αριθμός Εγκαταστάσεων | 102 |
Τρέχουσα Έκδοση | 0.1 |
Τελευταία Ενημέρωση | 2015-06-19 |
Ημερομηνία Δημοσίευσης | 2015-06-19 |
Αξιολόγηση | 3.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | isaaclandersen |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Malapropism", "description": "Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)", "version": "0.1", "options_page": "options.html", "permissions": [ "storage", "tabs" ], "background": { "scripts": [ "background.js" ] }, "icons": { "16": "bug16.png", "48": "bug48.png", "128": "bug128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ] } |