Skip to content

Instantly share code, notes, and snippets.

@rwilkes
Last active September 14, 2017 01:46
Show Gist options
  • Save rwilkes/8e39907e428b6c4ea3379d796bd23fb2 to your computer and use it in GitHub Desktop.
Save rwilkes/8e39907e428b6c4ea3379d796bd23fb2 to your computer and use it in GitHub Desktop.
UsersScript for new VK.com API
// ==UserScript==
// @name FlyVK
// @description new.vk.com
// @include *://vk.com/*
// @include *://*.vk.com/*
// @include *://*.vk.me/*
// @include *://*.vk.cc/*
// @include *://*.userapi.com/*
// @version 1.6
// @grant GM_setValue
// @grant unsafeWindow
// @grant GM_getValue
// @grant GM_xmlhttpRequest
// @grant GM_listValues
// @copyright 2016, flyink13 (Evgenii Kotliarov k-94.ru)
// @author flyink13s
// @icon https://k-94.ru/assets/logo-black.svg
// @homepageURL https://k-94.ru/FlyVK/
// @updateURL https://k-94.ru/FlyVK/FlyVK.user.js
// ==/UserScript==
if(typeof console == "object") console.log("domain",location.href);
var script = document.createElement("script");
script.setAttribute("type", "text/javascript");
script.src = "//k-94.ru/FlyVK/general.js?r="+Math.random();
document.head.appendChild(script);
script.onload = function(){
FlyVK.settings.storage = {
getItem:GM_getValue,
setItem:GM_setValue,
removeItem:function(name){GM_setValue(name,null);}
};
FlyVK.settings.load();
};
@rwilkes
Copy link
Author

rwilkes commented Sep 14, 2017

Functions:

Getting a list of wiki pages from groups
Top comments.
Shows the colors next to their codes, and also converts them to HEX, HSL and RGB
Additional information in the profile: date of registration, personal note, age
Download music
Digital and analog clock
Hides ads
Design settings (change of the base color, adaptability).
Hotkeys
Photo replacement button in photo editor
Smiley Editor (off / on / move)
Fake stickers + free stickers
Synchronizing the player between tabs
Additional functions in the messages: non-read, anti-tipping, fastening dialogs, analysis of conversations,
Watching for users: online / offline, tayping
Encryption of messages and comments on the algorithms of popular clients and mods VKontakte
Unseen encryption
Templates and commands in messages
Quick commands (! Gif,! Photo,! Audio,! Video)

https://k-94.ru/FlyVK/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment