Imgur Valentine's Day Replacer
Replaces Valentines day posts from imgur with the money cat...
Was ist Imgur Valentine's Day Replacer?
Imgur Valentine's Day Replacer ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Replaces Valentines day posts from imgur with the money cat...".
Imgur Valentine's Day Replacer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Imgur Valentine's Day Replacer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Imgur Valentine's Day Replacer |
ID | hneogcmeohdbecpjecfmpnfpkdkmfjbf |
Offizielle URL | https://chromewebstore.google.com/detail/imgur-valentines-day-repl/hneogcmeohdbecpjecfmpnfpkdkmfjbf |
Beschreibung | Replaces Valentines day posts from imgur with the money cat... |
Dateigröße | 21.19 KB |
Installationsanzahl | 17 |
Aktuelle Version | 1.0 |
Letztes Update | 2016-02-05 |
Veröffentlichungsdatum | 2016-02-05 |
Entwickler | Unknown |
Zahlungsart | free |
Unterstützte Sprachen | 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\/*" ] } |