Celeb Replacer
Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results.
Co je Celeb Replacer?
Celeb Replacer je rozšíření Chrome vyvinuté Jamie Farrelly, a jeho hlavní funkcí je „Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Celeb Replacer
Stáhněte si soubory rozšíření Celeb Replacer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Replaces some well known celebrities such as Kim Jong Un to other celebrities (in this case Kim Kardashian). Can end up being quite funny now and again! At the moment there aren't too many celebrities covered but if you have any suggestions I'd be more than happy to add them in. Feel free to leave suggestions in the review section or tweet me @Jamie_Farrelly
Základní Informace o Rozšíření
Název | Celeb Replacer |
ID | ecefjchkchdojnmjiholejpbccjiklog |
Oficiální URL | https://chromewebstore.google.com/detail/celeb-replacer/ecefjchkchdojnmjiholejpbccjiklog |
Popis | Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results. |
Velikost souboru | 35.25 KB |
Počet instalací | 368 |
Aktuální Verze | 0.0.0.1 |
Poslední Aktualizace | 2015-01-05 |
Datum Vydání | 2015-01-05 |
Hodnocení | 2.20/5 Celkem 5 Hodnocení |
Vývojář | Jamie Farrelly |
Typ Platby | free |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Celeb Replacer", "version": "0.0.0.1", "description": "Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results.", "permissions": [ "storage" ], "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "images\/icon19-on.png", "default_title": "Toggle Celeb Replacer" }, "content_security_policy": "default-src 'none'; script-src 'self'", "options_page": "options.html" } |