Skip to content

Commit

Permalink
Merge pull request #92 from artem-solovev/bugfix/#91-crash-on-empty-t…
Browse files Browse the repository at this point in the history
…oken

bugfix/#91 Fixed crush on empty token
  • Loading branch information
kas-elvirov authored Jun 6, 2020
2 parents dd9aa04 + 6dde111 commit 5a12445
Show file tree
Hide file tree
Showing 23 changed files with 773 additions and 330 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
APP_VERSION=8.2.9
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
custom: ["https://www.paypal.me/ArtemSolovev"]
open_collective: artem-solovev
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![Chrome Web Store](https://img.shields.io/chrome-web-store/d/kaodcnpebhdbpaeeemkiobcokcnegdki.svg?style=flat-square)]()
[![Chrome Web Store](https://img.shields.io/chrome-web-store/v/kaodcnpebhdbpaeeemkiobcokcnegdki.svg?style=flat-square)]()
[![Chrome Web Store](https://img.shields.io/chrome-web-store/rating-count/kaodcnpebhdbpaeeemkiobcokcnegdki.svg?style=flat-square)]()
![Chrome Web Store](https://img.shields.io/chrome-web-store/d/kaodcnpebhdbpaeeemkiobcokcnegdki.svg?style=flat-square)
![Chrome Web Store](https://img.shields.io/chrome-web-store/v/kaodcnpebhdbpaeeemkiobcokcnegdki.svg?style=flat-square)
![Chrome Web Store](https://img.shields.io/chrome-web-store/rating-count/kaodcnpebhdbpaeeemkiobcokcnegdki.svg?style=flat-square)
___

# Browser extension GLOC ( [Chrome](https://chrome.google.com/webstore/detail/gloc-github-counter-lines/kaodcnpebhdbpaeeemkiobcokcnegdki?utm_source=chrome-ntp-icon), [Opera](), [Firefox](https://addons.mozilla.org/en-US/firefox/addon/gloc/) )
Expand All @@ -10,7 +10,7 @@ ___

## History
### Version:
- current: 8.2.5 ( 2020, 15 may )
- current: 8.2.10 ( 2020, 6 june )
- initial: 2.0.1 ( 2017, 12 february )

I made this program in the Russian Army while I was on duty. I was coding as fast as i could )))
Expand Down
86 changes: 43 additions & 43 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
{
"manifest_version": 2,
"default_locale": "en",

"name": "__MSG_name__",
"short_name": "__MSG_shortName__",
"author": "__MSG_author__",
"description": "__MSG_description__",
"version": "8.2.5",

"browser_action": {
"default_icon": "img/icon128.png",
"default_popup": "index.html",
"default_title": "Github Gloc"
},

"options_ui": {
"page": "options.html"
},

"options_page": "options.html",

"content_scripts": [
{
"matches": ["*://github.com/*"],

"js": ["src/inject.js"]
}
],

"background": {
"scripts": ["src/background.js"],
"persistent": false
},

"permissions": ["storage", "*://*.github.com/*"],

"icons": {
"16": "img/icon16.png",
"32": "img/icon32.png",
"64": "img/icon64.png",
"128": "img/icon128.png"
}
}
"manifest_version": 2,
"default_locale": "en",
"name": "__MSG_name__",
"short_name": "__MSG_shortName__",
"author": "__MSG_author__",
"description": "__MSG_description__",
"version": "8.2.9",
"browser_action": {
"default_icon": "img/icon128.png",
"default_popup": "index.html",
"default_title": "Github Gloc"
},
"options_ui": {
"page": "options.html"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"*://github.com/*"
],
"js": [
"src/inject.js"
]
}
],
"background": {
"scripts": [
"src/background.js"
],
"persistent": false
},
"permissions": [
"storage",
"*://*.github.com/*"
],
"icons": {
"16": "img/icon16.png",
"32": "img/icon32.png",
"64": "img/icon64.png",
"128": "img/icon128.png"
}
}
Loading

0 comments on commit 5a12445

Please sign in to comment.