Imgur Valentine's Day Replacer
Replaces Valentines day posts from imgur with the money cat...
Τι είναι το Imgur Valentine's Day Replacer;
Το Imgur Valentine's Day Replacer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "Replaces Valentines day posts from imgur with the money cat...".
Λήψη αρχείου CRX της επέκτασης Imgur Valentine's Day Replacer
Λήψη αρχείων επέκτασης Imgur Valentine's Day Replacer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
It's valentine's day season for the internet. If you just broke up with someone, and don't want to see posts with valentine's day in them on imgur use this plugin. It will replace the text and image with a cat.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Imgur Valentine's Day Replacer |
ID | hneogcmeohdbecpjecfmpnfpkdkmfjbf |
Επίσημο URL | https://chromewebstore.google.com/detail/imgur-valentines-day-repl/hneogcmeohdbecpjecfmpnfpkdkmfjbf |
Περιγραφή | Replaces Valentines day posts from imgur with the money cat... |
Μέγεθος Αρχείου | 21.19 KB |
Αριθμός Εγκαταστάσεων | 17 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2016-02-05 |
Ημερομηνία Δημοσίευσης | 2016-02-05 |
Προγραμματιστής | Unknown |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Imgur Valentine's Day Replacer", "description": "Replaces Valentines day posts from imgur with the money cat...", "version": "1.0", "icons": { "16": "icon.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "replace valentine with cats" }, "content_scripts": [ { "matches": [ "*:\/\/imgur.com\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab", "*:\/\/imgur.com\/*", "webRequest", "tabs", "*:\/\/s.imgur.com\/*" ] } |