Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Ahmed-Elswerky/custom-tampermonkey-scripts
this is a custom script repository,
https://github.com/Ahmed-Elswerky/custom-tampermonkey-scripts
Last synced: 12 days ago
JSON representation
this is a custom script repository,
- Host: GitHub
- URL: https://github.com/Ahmed-Elswerky/custom-tampermonkey-scripts
- Owner: Ahmed-Elswerky
- Created: 2021-12-13T12:04:33.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-06T19:14:55.000Z (over 2 years ago)
- Last Synced: 2024-08-01T16:53:34.226Z (3 months ago)
- Size: 9.77 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## This repo goal is sharing Tampermoneky extension code (js code mainly) , that is helpful for safer and more productive web browsing.
# link to install TamperMonkey from
https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=en
------------------------------------
Scripts consisting of:
- Dark themeing multiple websites
- Facebook hiding main timeline------------------------------------
- # Dark themeing multiple websites
# Code to add
```
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.messenger.com/*
// @match https://firebase.google.com/*
// @match https://soundcloud.com/*
// @match https://docs.flutter.dev/*
// @match https://stackoverflow.com/*
// @match https://pub.dev/*
// @match https://dmitripavlutin.com/*
// @match https://move.egybest.co/*
// @match https://developer.android.com/*
// @match https://drive.google.com/*
// @match https://dillinger.io/*
// @match localhost:3001/*
// @match antqueuelive.web.app/*
// @match https://translate.google.com/*
// @match https://console.firebase.google.com/*
// @match https://www.npmjs.com/*
// @match https://console.cloud.google.com/*
// @match https://cloud.google.com/*
// @match https://play.google.com/*
// @match https://realmefirmware.com/*
// @match https://ant.design/*
// @match https://react-bootstrap.github.io/*
// @match https://www.itwonders-web.com/*
// @match https://www.linkedin.com/*
// @match https://www.diffchecker.com/*
// @icon https://www.google.com/s2/favicons?domain=messenger.com
// @grant none
// ==/UserScript==(function() {
setTimeout(function (){
var style = document.createElement('style')
let css=`*{font-weight:bold !important;}\
html{filter:invert(1) hue-rotate(180deg) !important}\
html,body,main,footer{background-color:#f6f7f9 !important}\
img,.bixrwtb6 ,svg,.image,.video-wrapper{filter:invert(1) hue-rotate(180deg) !important}`;
style.type = 'text/css';
if (style.styleSheet){
// This is required for IE8 and below.
style.styleSheet.cssText = css;
} else {
style.appendChild(document.createTextNode(css));
}
document.head.appendChild(style);
},1)// Your code here...
})();
```- # Facebook hiding main timeline
# Code to add
```
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.facebook.com/*
// @icon https://www.google.com/s2/favicons?domain=messenger.com
// @grant none
// ==/UserScript==(function() {
setTimeout(function (){
var style = document.createElement('style')
let css=`div[role='main']{display:none;}`;
style.type = 'text/css';
if (style.styleSheet){
// This is required for IE8 and below.
style.styleSheet.cssText = css;
} else {
style.appendChild(document.createTextNode(css));
}
document.head.appendChild(style);
},1)// Your code here...
})();