AddOn:
- Go to about:support in your address bar
- Look for your profiles directory and open it:
- Create a file named
chrome/userChrome.cssin your profile directory:
AddOn:
chrome/userChrome.css in your profile directory:| import requests | |
| import json | |
| import sys | |
| import os | |
| headers = { | |
| 'X-Requested-With': 'com.bandcamp.android', | |
| 'Content-Type': 'application/json', | |
| 'User-Agent': 'Dalvik/2.1.0 (Linux; U; Android 9; Unknown Device)', | |
| 'Host': 'bandcamp.com', |
AddOn:
chrome/userChrome.css in your profile directory:| // Navigate to https://github.com/watching and then run: | |
| // Taken from: https://stackoverflow.com/questions/11043374/how-to-unwatch-multiple-repos-easily-on-github | |
| Array.prototype | |
| .slice.apply(document.querySelectorAll('.js-subscription-row')) | |
| .forEach(el => { const org = el.querySelector('a[href^="/YOUR_ORG"]'); if (org) el.querySelector('button').click()}); |