🅱️
Replace the letter B with the 🅱️ emoji everywhere.
Τι είναι το 🅱️;
Το 🅱️ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Daniel Ting, και η κύρια λειτουργία του είναι "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"
}
} | |