Extreemit
Everything you ever wanted to add to Steemit
什么是Extreemit?
Extreemit是由itchykitten开发的Chrome扩展程序,该扩展的主要功能是“Everything you ever wanted to add to Steemit”。
扩展截图
下载Extreemit扩展crx文件
下载Extreemit扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A UI mod for Steemit.com Currently has one feature, which allows you to toggle displaying 'Resteems' on Steemit.com user profiles. More to come!
made by @itchykitten for use on steemit.com. 扩展基本信息
| 名称 | |
| ID | fongpbjdmmlocghoebbindiopneahhhk |
| 官方URL | https://chrome.google.com/webstore/detail/extreemit/fongpbjdmmlocghoebbindiopneahhhk |
| 简介 | Everything you ever wanted to add to Steemit |
| 文件大小 | 53.01 KB |
| 安装次数 | 28 |
| 当前版本 | 0.0.1 |
| 更新时间 | 2017-06-28 |
| 上架时间 | 2017-06-28 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | itchykitten |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Extreemit",
"description": "Everything you ever wanted to add to Steemit",
"version": "0.0.1",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"icons": {
"48": "steem48.png",
"128": "steem128.png"
},
"permissions": [
"activeTab",
"https:\/\/ajax.googleapis.com\/"
],
"content_scripts": [
{
"matches": [
"https:\/\/steemit.com\/*"
],
"css": [
"toggle.css"
],
"js": [
"jquery.js",
"extreemit.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
}
} | |