Blueswan
sky without annoying numbers.
什麼是Blueswan?
Blueswan是由kawarimidoll開發的Chrome擴展程式,該擴展的主要功能是“sky without annoying numbers.”。
擴展截圖
下載Blueswan擴展crx文件
下載Blueswan擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension removes annoying numbers from Bluesky.
- In posts
- replies
- reposts
- likes
- In profile
- followers
- following
- posts
- In sidebar
- notifications
- In notifications-list
- details
You can choose to show them, show them on hover, or hide them.
Storage permission is required to save settings. 擴展基本資訊
| 名稱 | |
| ID | cnenmkcimleaeklmeflfnejicbhndlko |
| 官方網址 | https://chromewebstore.google.com/detail/blueswan/cnenmkcimleaeklmeflfnejicbhndlko |
| 簡介 | sky without annoying numbers. |
| 檔案大小 | 15.81 KB |
| 安裝次數 | 121 |
| 目前版本 | 1.6.6 |
| 更新時間 | 2024-01-04 |
| 上架時間 | 2023-04-29 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | kawarimidoll |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/kawarimidoll/blueswan |
| 說明頁面URL | https://github.com/kawarimidoll/blueswan/issues |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Blueswan",
"author": "kawarimidoll",
"version": "1.6.6",
"description": "sky without annoying numbers.",
"content_scripts": [
{
"matches": [
"https:\/\/bsky.app\/*",
"https:\/\/staging.bsky.app\/*"
],
"js": [
".\/scripts\/common.js",
".\/scripts\/content_scripts.js"
],
"css": [
".\/styles\/content_scripts.css"
]
}
],
"icons": {
"16": ".\/images\/blueswan-16.png",
"128": ".\/images\/blueswan-128.png"
},
"action": {
"default_icon": {
"16": ".\/images\/blueswan-16.png",
"128": ".\/images\/blueswan-128.png"
},
"default_popup": ".\/pages\/popup.html"
},
"permissions": [
"storage"
]
} | |