-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit ef26af1
Showing
6 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.idea/ | ||
releases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | ||
Version 2, December 2004 | ||
|
||
Copyright (C) 2004 Sam Hocevar <[email protected]> | ||
|
||
Everyone is permitted to copy and distribute verbatim or modified | ||
copies of this license document, and changing it is allowed as long | ||
as the name is changed. | ||
|
||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | ||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION | ||
|
||
0. You just DO WHAT THE FUCK YOU WANT TO. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Github Restrictions Hider | ||
=== | ||
Nothing special here. This WebExtension just removes annoying yellow message that says we (countries that are under sanctions by US laws) are restricted to use Github. | ||
We were a little excited to hear that Microsoft let's us create private repositories, but now our private repositories are disabled and we don't have even read access to them!! | ||
|
||
As a single person, all i can do now is to ignore your message, just like you ignored the freedom of open source. | ||
# Install | ||
|
||
[FireFox MDN](https://addons.mozilla.org/) | ||
[Chrome store](https://chrome.google.com/webstore/detail/pkconlgalehldobejjolennilngnmcnb/publish-accepted?hl=en-US) | ||
|
||
Icon from http://pluspng.com/png-110941.html | ||
|
||
## License | ||
WTFPL – Do What the Fuck You Want to Public License. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
header + div.flash.flash-full.js-notice.flash-warn{ | ||
display: none; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
|
||
"content_scripts": [ | ||
{ | ||
"css": [ | ||
"contentScripts/removewarning.css" | ||
], | ||
"matches": [ | ||
"https://github.com/*", | ||
"http://github.com/*" | ||
], | ||
"run_at": "document_start" | ||
} | ||
], | ||
"description": "Nothin special, Just removes the annoying yellow message that tells we are restricted because of US laws.", | ||
"homepage_url": "https://github.com/JafarAkhondali/remove-github-restrictions-message", | ||
"icons": { | ||
"128": "logo/icon_128.png" | ||
}, | ||
"manifest_version": 2, | ||
"name": "Hides restricted message of github", | ||
"short_name": "Github Restricted Remover", | ||
"version": "0.0.1" | ||
} |