🅱️
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 |
| Eメール | [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"
}
} | |