v2ex.ext
V2EX Extension
Wat is v2ex.ext?
v2ex.ext is een Chrome-extensie ontwikkeld door jKey Lu, en de belangrijkste functie is "V2EX Extension".
Extensie Screenshots
Download het CRX-bestand van de extensie v2ex.ext
Download v2ex.ext-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
1. 在回复和新建主题中添加“微博是个好图床”按钮
2. 鼠标悬浮在头像上时,显示用户信息
3. 添加“只看楼主”按钮
4. 折叠显示部分评论
5. 快速查看被 @ 的人最近一条回复
6. 高亮楼主头像
7. 消息提醒
changelog:
2015-03-21: 0.2.7 添加提醒
2014-11-09: 0.2.4 添加产看 at他的所有回复的功能
2014-05-30: 0.2.2 修复 powertip 中一行文字太长不会自动换行的问题
2014-05-30: 0.2.1 把只看放到时间右边
2014-05-29: 0.2.0 一些小更新,并且可以拖拽图片到文本框里上传图片
2013-05-31: 0.1.1 修改折叠符号颜色,让 v2ex 的 cdn 站点也能运行 Basisinformatie over de Extensie
| Naam | |
| ID | cibnlngbgpkcmbiilfdeekaojmfhimag |
| Officiële URL | https://chromewebstore.google.com/detail/v2exext/cibnlngbgpkcmbiilfdeekaojmfhimag |
| Beschrijving | V2EX Extension |
| Bestandsgrootte | 48.77 KB |
| Aantal Installaties | 659 |
| Huidige Versie | 0.2.8 |
| Laatst Bijgewerkt | 2015-05-18 |
| Publicatiedatum | 2015-05-18 |
| Beoordeling | 4.88/5 Totaal 32 Beoordelingen |
| Ontwikkelaar | jKey Lu |
| Betalingswijze | free |
| Ondersteunde Talen | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "v2ex.ext",
"version": "0.2.8",
"manifest_version": 2,
"description": "V2EX Extension",
"homepage_url": "https:\/\/github.com\/jkeylu\/v2ex.ext",
"author": "jKey Lu",
"icons": {
"16": "v2ex.ico",
"48": "v2ex.ico",
"128": "v2ex.ico"
},
"permissions": [
"alarms",
"notifications",
"storage",
"*:\/\/*.weibo.com\/",
"*:\/\/*.v2ex.com\/",
"*:\/\/v2ex.com\/"
],
"options_page": "option\/options.html",
"background": {
"scripts": [
"js\/jquery-2.1.1.min.js",
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/*.v2ex.com\/*",
"*:\/\/v2ex.com\/*"
],
"css": [
"css\/jquery.powertip.min.css",
"css\/v2ex.ext.css"
],
"js": [
"js\/jquery-2.1.1.min.js",
"js\/jquery.powertip.min.js",
"js\/v2ex.ext.js"
],
"run_at": "document_start"
}
]
} | |