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
# https://forums.adobe.com/thread/2621275 | |
cd C:\Users\cmartinezv\Documents | |
# This will Stop the Services, and change the startup from Automatic to Manual - Opening Adobe Applications will start these services, without your interaction. If you have issues, you can manually start them by replacing Get-Service with Start-Service, or open the Services Panel with WindowsKey+R: "services.msc" | |
# Setting Startup to Manual only needs to be run once. Stopping the services needs to be done each time you exit application, if you don't want background services running. Such as Sync. | |
Get-Service -DisplayName Adobe* | Stop-Service | |
Get-Service -DisplayName Adobe* | Set-Service -StartupType Manual |
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
// ==UserScript== | |
// @author Eklei | |
// @name SCP Name Tracker | |
// @namespace eklei@fhqwhgads | |
// @description Retrieves SCP names and places them in page titles. Also puts tooltips on any instance of an SCP or experiment ID. The script will automatically create or update its cache by fetching the necessary index pages (including joke, explained, and archived SCPs) at most once every 3 days. The cache will also be created or updated whenever you visit an index page manually. As an added bonus, this script can defeat some memetic censoring (optional, see toggle at top of script). The automatic fetching only works on big boy browsers that are compliant with web standards from at least 2011. If you have some outdated mobile browser that isn't compliant, you can still generate a cache by visiting each index page manually. | |
// @version 2.4 | |
// @include http://www.scp-wiki.net/* | |
// @include http://scp-wiki.wikidot.com/* | |
// @grant none | |
// ==/UserScript== |