View manifest.json
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
{ | |
"name": "GitHub Feed Blocker", | |
"description": "Block the feed!", | |
"version": "1.0", | |
"manifest_version": 3, | |
"content_scripts": [ | |
{ | |
"matches": ["https://github.com/"], | |
"js": ["/removal_script.js"] | |
} |
View main.py
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
import pyautogui as pp | |
import time | |
import sys | |
number = int(input("Enter the next number for counting bot:: ")) | |
last_number = int(input("Enter the last number for counting bot:: ")) | |
time1 = int(input("Enter time gap for left app's count:: ")) | |
time2 = int(input("Enter time gap for right app's count:: ")) | |
time.sleep(1) |