🅱️
Replace the letter B with the 🅱️ emoji everywhere.
什么是🅱️?
🅱️是由Daniel Ting开发的Chrome扩展程序,该扩展的主要功能是“Replace the letter B with the 🅱️ emoji everywhere.”。
扩展截图
下载🅱️扩展crx文件
下载🅱️扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A pretty useless extension, to be honest. Side effects may include making long-form information slightly more interesting as well as completely unreadable, turning toxic comments humorous, and mild to severe 🅱️.
- Can be disabled for one domain by clicking on the extension icon (to enable it only on whitelisted sites, go to chrome://extensions and change the "Site access" option to "On specific sites" on the extension's details page)
- Copying 🅱️-ified text to clipboard will preserve the original text
- Works on content fetched dynamically after initial page load
- Lightning fast even on the heaviest of pages
- Free/libre and open source: zero tracking, telemetry, or phoning home 扩展基本信息
| 名称 | |
| ID | mkndebmieplndmfbaiekpfcinpbbjngj |
| 官方URL | https://chromewebstore.google.com/detail/%F0%9F%85%B1%EF%B8%8F/mkndebmieplndmfbaiekpfcinpbbjngj |
| 简介 | Replace the letter B with the 🅱️ emoji everywhere. |
| 文件大小 | 911 KB |
| 安装次数 | 28 |
| 当前版本 | 2.0 |
| 更新时间 | 2021-04-22 |
| 上架时间 | 2021-04-11 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | Daniel Ting |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/DanielZTing/b |
| 帮助页面URL | https://github.com/DanielZTing/b/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "\ud83c\udd71\ufe0f",
"description": "Replace the letter B with the \ud83c\udd71\ufe0f emoji everywhere.",
"version": "2.0",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"action": [],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"mutation-summary.js",
"main.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"tabs"
],
"icons": {
"128": ".\/assets\/b.png"
}
} | |