├── .gitignore ├── src └── github-pro.js ├── github-pro.crx ├── docs ├── image1.png ├── image2.png ├── image3.png ├── image4.png └── image5.jpg ├── images ├── icon16.png ├── icon48.png ├── icon128.png └── screenshot.png ├── manifest.json └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /src/github-pro.js: -------------------------------------------------------------------------------- 1 | document.querySelector('.js-pro-badge').classList.remove('d-none') 2 | -------------------------------------------------------------------------------- /github-pro.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawwaz/yes-i-am-a-github-pro/HEAD/github-pro.crx -------------------------------------------------------------------------------- /docs/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawwaz/yes-i-am-a-github-pro/HEAD/docs/image1.png -------------------------------------------------------------------------------- /docs/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawwaz/yes-i-am-a-github-pro/HEAD/docs/image2.png -------------------------------------------------------------------------------- /docs/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawwaz/yes-i-am-a-github-pro/HEAD/docs/image3.png -------------------------------------------------------------------------------- /docs/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawwaz/yes-i-am-a-github-pro/HEAD/docs/image4.png -------------------------------------------------------------------------------- /docs/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawwaz/yes-i-am-a-github-pro/HEAD/docs/image5.jpg -------------------------------------------------------------------------------- /images/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawwaz/yes-i-am-a-github-pro/HEAD/images/icon16.png -------------------------------------------------------------------------------- /images/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawwaz/yes-i-am-a-github-pro/HEAD/images/icon48.png -------------------------------------------------------------------------------- /images/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawwaz/yes-i-am-a-github-pro/HEAD/images/icon128.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawwaz/yes-i-am-a-github-pro/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Github Pro", 3 | "version": "1.0", 4 | "author": "Fawwaz Muhammad", 5 | "manifest_version": 2, 6 | "description": "Put pro-badge on your github profile", 7 | "homepage_url": "http://www.github.com/fawwaz/yes-i-am-a-github-pro", 8 | "icons": { 9 | "16": "images/icon16.png", 10 | "48": "images/icon48.png", 11 | "128": "images/icon128.png" 12 | }, 13 | "content_scripts": [ 14 | { 15 | "matches": ["http://github.com/*", "https://github.com/*"], 16 | "js": ["src/github-pro.js"] 17 | } 18 | ], 19 | "web_accessible_resources": ["resources/*"] 20 | } 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Background 2 | 3 | ![hahaha](docs/image5.jpg) 4 | 5 | Are you envied at your friend's GitHub Pro badge on their profile? 6 | Bullied because you don't have one? 7 | Now everyone can have that **FOR FREE**!!! YEAAH! :moneybag: 8 | 9 | It would be nice if you star this repo :star: 10 | 11 | # How to 12 | 13 | **User guide :** 14 | 15 | > Suitable for ordinary people. 16 | 17 | 1. Open the extension page in chrome (you can type `chrome://extensions` on your browser) 18 | 2. Make sure you tick the developer mode 19 | ![developer mode ticked](docs/image1.png) 20 | 3. Download the plugin [here](github-pro.crx) 21 | 4. Drag and drop the plugin to the extension page 22 | 5. Click `ok` to install the plugin 23 | 24 | **Developer guide:** 25 | 26 | > Suitable for those who suspect me injecting malicious code in the plugin 27 | 28 | 1. Clone this repo 29 | 2. Read every file, find malicious code 30 | 3. If you can't spot it, open extension page (`chrome://extensions`) 31 | 4. Click load unpacked extension 32 | ![unpacked extension](docs/image2.png) 33 | 5. Choose the root folder of this repo 34 | 6. Click `ok` to continue to install the plugin 35 | 36 | # Result 37 | 38 | | Before | After | 39 | | -------------------------- | ------------------------- | 40 | | ![before](docs/image3.png) | ![after](docs/image4.png) | 41 | 42 | # FAQ 43 | 44 | Q: Why is this plugin is not published in the Chrome Web Store? It may change the world! 45 | A: Dude. Don't you remember that I can't even afford subscription fee for GitHub Pro plan? Why would I invest my money and time for the Chrome Developer account and maintaining this shit plugin. 46 | 47 | Q: Will I get exclusive GitHub Pro features ? 48 | A: Despite the badge hanging on your GitHub Profile, it doesn't mean that you will receive the benefit of an actual GitHub Pro account. It only does as it says, put a pro badge on your GitHub Profile. 49 | 50 | Q: If I install this plugin, will I get theb 'GitHub Pro' label in [@sonnylazuardi](https://github.com/sonnylazuardi)'s "[github pro checker](https://github.com/sonnylazuardi/are-you-github-pro)"? 51 | A: No, Absolutely no. Please work harder, ask your lead to promote you so you get more money and be able to subscribe to GitHub Pro membership. 52 | 53 | ### Disclaimer 54 | 55 | This chrome plugin is only built for educational purposes. 56 | 57 | ### License 58 | 59 | This repository is licensed under the MIT license. 60 | --------------------------------------------------------------------------------