VKCustom
Change the style for Vkontakte
什么是VKCustom?
VKCustom是由NPC开发的Chrome扩展程序,该扩展的主要功能是“Change the style for Vkontakte”。
扩展截图
下载VKCustom扩展crx文件
下载VKCustom扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Данное расширение добавляет для vk.com тёмную тему заменяя собой старый дизайн
扩展基本信息
名称 | VKCustom |
ID | oehnhecdbdmdbkamifpmcddelbmfgjfh |
官方URL | https://chromewebstore.google.com/detail/vkcustom/oehnhecdbdmdbkamifpmcddelbmfgjfh |
简介 | Change the style for Vkontakte |
文件大小 | 29.15 KB |
安装次数 | 124 |
当前版本 | 2.4 |
更新时间 | 2023-02-05 |
上架时间 | 2020-07-01 |
评分 | 4.50/5 共8次评分 |
开发者 | NPC |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://vk.com/npcgm |
支持的语言 | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_app_name__", "description": "__MSG_app_description__", "author": "Vombit", "version": "2.4", "default_locale": "ru", "icons": { "128": "image\/icon.png" }, "permissions": [ "storage", "*:\/\/vk.com\/*", "*:\/\/*.vk.com\/*", "*:\/\/*.vk.me\/*" ], "browser_action": { "default_title": "VkCustom", "default_icon": "image\/icon.png", "default_popup": "popup.html" }, "options_page": "pages\/settings.html", "minimum_chrome_version": "22", "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/vk.com\/*", "*:\/\/*.vk.com\/*", "*:\/\/userapi.com\/*", "*:\/\/*.userapi.com\/*", "*:\/\/vk.me\/*", "*:\/\/*.vk.me\/*" ], "js": [ "back.js" ], "css": [ "styles\/body.css" ], "run_at": "document_start" } ], "background": { "scripts": [ "scripts\/background.js" ] } } |