Celeb Replacer
Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results.
什麼是Celeb Replacer?
Celeb Replacer是由Jamie Farrelly開發的Chrome擴展程式,該擴展的主要功能是“Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results.”。
擴展截圖
下載Celeb Replacer擴展crx文件
下載Celeb Replacer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Celeb Replacer |
ID | ecefjchkchdojnmjiholejpbccjiklog |
官方網址 | https://chromewebstore.google.com/detail/celeb-replacer/ecefjchkchdojnmjiholejpbccjiklog |
簡介 | Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results. |
檔案大小 | 35.25 KB |
安裝次數 | 368 |
目前版本 | 0.0.0.1 |
更新時間 | 2015-01-05 |
上架時間 | 2015-01-05 |
評分 | 2.20/5 共 5 次評分 |
開發者 | Jamie Farrelly |
付費類型 | free |
支援的語言 | 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" } |