XKit Rewritten
The enhancement suite for Tumblr's new web interface
什么是XKit Rewritten?
XKit Rewritten是由April Sylph开发的Chrome扩展程序,该扩展的主要功能是“The enhancement suite for Tumblr's new web interface”。
扩展截图
下载XKit Rewritten扩展crx文件
下载XKit Rewritten扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A comprehensive collection of extra features and interface tweaks for Tumblr.
This incarnation of XKit has been designed from the ground up to target Tumblr's new React-based site, which launched in April 2020.
Check out the wiki for a full list of features! 扩展基本信息
| 名称 | |
| ID | ehgbadgnkmeeldglkmnplolneidgpbcm |
| 官方URL | https://chromewebstore.google.com/detail/xkit-rewritten/ehgbadgnkmeeldglkmnplolneidgpbcm |
| 简介 | The enhancement suite for Tumblr's new web interface |
| 文件大小 | 1.85 MB |
| 安装次数 | 39,160 |
| 当前版本 | 0.23.3 |
| 更新时间 | 2023-12-14 |
| 上架时间 | 2022-02-07 |
| 评分 | 4.60/5 共45次评分 |
| 开发者 | April Sylph |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/AprilSylph/XKit-Rewritten/wiki |
| 帮助页面URL | https://github.com/AprilSylph/XKit-Rewritten/discussions |
| 隐私政策页面URL | https://github.com/AprilSylph/AprilSylph/blob/master/PRIVACY.md |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "XKit Rewritten",
"version": "0.23.3",
"short_name": "XKit",
"author": "April Sylph",
"homepage_url": "https:\/\/github.com\/AprilSylph\/XKit-Rewritten\/wiki",
"description": "The enhancement suite for Tumblr's new web interface",
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"64": "icons\/64.png",
"96": "icons\/96.png",
"128": "icons\/128.png"
},
"browser_action": {
"browser_style": true,
"default_title": "XKit Rewritten",
"default_popup": "browser_action\/popup.html",
"default_icon": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"64": "icons\/64.png",
"96": "icons\/96.png",
"128": "icons\/128.png"
}
},
"options_ui": {
"page": "browser_action\/popup.html?embedded=true",
"open_in_tab": false
},
"permissions": [
"storage"
],
"web_accessible_resources": [
"*.js",
"*.json",
"*.css",
"*.svg"
],
"content_scripts": [
{
"matches": [
"*:\/\/www.tumblr.com\/*"
],
"exclude_matches": [
"*:\/\/www.tumblr.com\/login",
"*:\/\/www.tumblr.com\/register",
"*:\/\/www.tumblr.com\/register?*",
"*:\/\/www.tumblr.com\/privacy\/*"
],
"run_at": "document_end",
"js": [
"lib\/browser-polyfill.min.js",
"lib\/jquery.min.js",
"content_scripts\/main.js"
],
"css": [
"content_scripts\/control_buttons.css",
"content_scripts\/meatballs.css",
"content_scripts\/sidebar.css",
"content_scripts\/modals.css",
"content_scripts\/notifications.css",
"content_scripts\/post_actions.css"
]
}
],
"minimum_chrome_version": "89",
"browser_specific_settings": {
"gecko": {
"strict_min_version": "89.0a1"
},
"gecko_android": {
"strict_min_version": "113.0"
}
}
} | |