Skip to content

Commit

Permalink
Release version, icon update
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil9l committed Oct 10, 2016
1 parent ece06eb commit 0669025
Show file tree
Hide file tree
Showing 9 changed files with 7,675 additions and 7 deletions.
7,613 changes: 7,613 additions & 0 deletions images/icons/Big_logo.ai

Large diffs are not rendered by default.

Binary file added images/icons/big_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions images/icons/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/icons/icon256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/icons/icon48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/icons/icon512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/icons/icon64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion js/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function clearSession() {
/** Saves vkontakte API key into the local strorage. */
function getToken() {
var client_id = 5300315;
var authUrl = 'https://oauth.vk.com/authorize?client_id=' + client_id + '&scope=users&redirect_uri=http%3A%2F%2Foauth.vk.com%2Fblank.html&display=page&response_type=token';
var authUrl = 'https://oauth.vk.com/authorize?client_id=' + client_id + '&scope=users,offline&redirect_uri=http%3A%2F%2Foauth.vk.com%2Fblank.html&display=page&response_type=token';
chrome.tabs.create({url: authUrl,selected: true}, function(tab) {
authTabId = tab.id;
chrome.tabs.onUpdated.addListener(function tabUpdateListener(tabId, changeInfo) {
Expand Down
20 changes: 14 additions & 6 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
{
"manifest_version": 2,
"name": "VK Charts",
"version": "1.0.8",

"description": "Показывает статистику на странице профиля вконтакте.",
"version": "1.0.6",
"icons": {
"48": "images/icons/icon48.png",
"64": "images/icons/icon64.png",
"256": "images/icons/icon256.png",
"512": "images/icons/icon512.png"
},

"author": "phil9l",
"homepage_url": "https://github.com/Phil9l/vk-charts/",

"options_page": "pages/information.html",

"permissions": [
"tabs",
"storage",
Expand All @@ -11,11 +24,6 @@
"http://*.vk.com/*",
"https://*.vk.com/*"
],
"icons": {
"48": "images/icons/icon48.png",
"64": "images/icons/icon64.png",
"256": "images/icons/icon256.png"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"background": {
"scripts": [
Expand Down

0 comments on commit 0669025

Please sign in to comment.