Skip to content

Commit c895607

Browse files
committed
fix: remove tabs permission request
1 parent fa32140 commit c895607

12 files changed

Lines changed: 16 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
## Changelog
22

3+
## 1.9.4
4+
5+
- Removed `tabs` permission request.
6+
37
## 1.9.3
48

5-
- Added GitHub Dark theme by @TreyRuffy.
9+
- Corrected "Issues" to "Issues & PRs". (#154 @kidonng)
10+
- Added two new themes for dark mode. (#160 @TreyRuffy)
11+
- Fixed `followersUrl` & `followingUrl`. (#161 @ellreka)
612

713
## 1.9.2
814

extensions/chrome/manifest.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "GitHub Hovercard",
44
"description": "Neat hovercards for GitHub.",
5-
"version": "1.9.3",
5+
"version": "1.9.4",
66
"icons": {
77
"128": "icon.png"
88
},
@@ -14,7 +14,6 @@
1414
},
1515
"permissions": [
1616
"webNavigation",
17-
"tabs",
1817
"storage",
1918
"https://github.com/*"
2019
],

extensions/edge/manifest.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,10 @@
2121
"options_page": "options.html",
2222
"permissions": [
2323
"webNavigation",
24-
"tabs",
2524
"storage",
2625
"https://github.com/*"
2726
],
28-
"version": "1.9.3",
27+
"version": "1.9.4",
2928
"-ms-preload": {
3029
"backgroundScript": "backgroundScriptsAPIBridge.js",
3130
"contentScript": "contentScriptsAPIBridge.js"

extensions/firefox/manifest.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "GitHub Hovercard",
44
"description": "Neat hovercards for GitHub.",
5-
"version": "1.9.3",
5+
"version": "1.9.4",
66
"icons": {
77
"128": "icon.png"
88
},
@@ -15,7 +15,6 @@
1515
"permissions": [
1616
"webNavigation",
1717
"webRequest",
18-
"tabs",
1918
"storage",
2019
"https://github.com/*",
2120
"https://api.github.com/*"

extensions/github-hovercard.safariextension/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
<key>CFBundleInfoDictionaryVersion</key>
1414
<string>6.0</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>1.9.3</string>
16+
<string>1.9.4</string>
1717
<key>CFBundleVersion</key>
18-
<string>1.9.3</string>
18+
<string>1.9.4</string>
1919
<key>Content</key>
2020
<dict>
2121
<key>Scripts</key>
-3 Bytes
Binary file not shown.
-3 Bytes
Binary file not shown.
-4 Bytes
Binary file not shown.
-3 Bytes
Binary file not shown.

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ <h1>Installation</h1>
8181
</div>
8282
</section>
8383
<section class="changelog">
84-
<h1>What's new for v1.9.3?</h1>
84+
<h1>What's new for v1.9.4?</h1>
8585
<ul>
86-
<li>Added GitHub Dark theme by @TreyRuffy.</li>
86+
<li>Removed <code>tabs</code> permission request.</li>
8787
</ul>
8888
<p class="alt text-muted">Check the complete changelog <a href="//github.com/Justineo/github-hovercard/blob/master/CHANGELOG.md">here</a>.</p>
8989
</section>

0 commit comments

Comments
 (0)