v2ex plus
优雅便捷的 V2EX 扩展
Hvad er v2ex plus?
v2ex plus er en Chrome-udvidelse udviklet af sciooga, og dens hovedfunktion er "优雅便捷的 V2EX 扩展".
Udvidelsesskærmbilleder
Download v2ex plus-udvidelses-CRX-fil
Download v2ex plus-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
                        V2EX Plus 2.0
功能简介:
通知功能:更新提醒、未读消息
登录态判断:未登录 icon 提醒
半小时自动签到
主题列表预览及忽略功能
新窗口浏览主题
快捷键打开 V 站
快捷键查看未读消息
悬浮头像查看用户基础信息
评论悬浮@用户查看最近回复
高亮楼主回复
高亮回复感谢爱心
会话详情(关联对话)
回复指定用户添加楼层号
划词 base64 解码
评论发图 imgur 图床
表情
标记用户:高亮头像
淡化注册时间一个月内的用户
管理标记用户列表
管理屏蔽用户列表
管理忽略主题列表
折叠超长主题、回复
翻页自动跳过主题至回复
修复历史微博图片显示
集成 sov2ex
源码请见♥: github.com/sciooga/v2ex-plus
反馈问题请 Email: sciooga#gmail.com                     Grundlæggende oplysninger om udvidelsen
| Navn |   |  
| ID | daeclijmnojoemooblcbfeeceopnkolo | 
| Officiel URL | https://chromewebstore.google.com/detail/v2ex-plus/daeclijmnojoemooblcbfeeceopnkolo | 
| Beskrivelse | 优雅便捷的 V2EX 扩展 | 
| Filstørrelse | 61.1 KB | 
| Antal Installationer | 8,345 | 
| Nuværende Version | 2.1.1 | 
| Senest Opdateret | 2023-06-04 | 
| Udgivelsesdato | 2020-04-26 | 
| Bedømmelse | 4.37/5 Samlet 101 Bedømmelser | 
| Udvikler | sciooga | 
| [email protected] | |
| Betalingsmetode | free | 
| Understøttede Sprog | zh-CN | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "v2ex plus",
    "version": "2.1.1",
    "manifest_version": 3,
    "description": "\u4f18\u96c5\u4fbf\u6377\u7684 V2EX \u6269\u5c55",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "alarms",
        "notifications",
        "storage",
        "declarativeNetRequest",
        "contextMenus"
    ],
    "host_permissions": [
        "*:\/\/*.v2ex.com\/*",
        "*:\/\/*.imgur.com\/*",
        "*:\/\/*.sinaimg.cn\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.v2ex.com\/*"
            ],
            "js": [
                ".\/inject\/base64decode.js",
                ".\/inject\/dbclickToTop.js",
                ".\/inject\/sov2ex.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.v2ex.com\/",
                "*:\/\/*.v2ex.com\/?tab=*",
                "*:\/\/*.v2ex.com\/go\/*",
                "*:\/\/*.v2ex.com\/my\/*",
                "*:\/\/*.v2ex.com\/recent*",
                "*:\/\/*.v2ex.com\/changes*"
            ],
            "css": [
                ".\/inject\/topicList\/index.css",
                ".\/inject\/userinfo\/index.css"
            ],
            "js": [
                ".\/inject\/topicList\/index.js",
                ".\/inject\/userinfo\/index.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.v2ex.com\/t\/*"
            ],
            "css": [
                ".\/inject\/topicDetail\/index.css",
                ".\/inject\/userinfo\/index.css"
            ],
            "js": [
                ".\/inject\/topicDetail\/index.js",
                ".\/inject\/userinfo\/index.js",
                ".\/spider\/index.js"
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "weibo",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "action": {
        "default_icon": "icon\/icon38.png"
    },
    "options_ui": {
        "page": "pages\/options\/index.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "icon\/icon16.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "commands": {
        "newV2EX": {
            "description": "\u6253\u5f00 V2EX"
        },
        "newMsg": {
            "description": "\u67e5\u770b V2EX \u6d88\u606f"
        }
    }
}  |  |