Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
JafarAkhondali committed Jul 26, 2019
0 parents commit ef26af1
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.idea/
releases
13 changes: 13 additions & 0 deletions LICENSE
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.
15 changes: 15 additions & 0 deletions README.md
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.
3 changes: 3 additions & 0 deletions WebExtension/contentScripts/removewarning.css
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;
}
Binary file added WebExtension/logo/icon_128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions WebExtension/manifest.json
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"
}

0 comments on commit ef26af1

Please sign in to comment.