RTEx is a userscript to limit switching and visiting sites.
Warning
The password protection is not secure, it stores the raw password. The password can be leaked and the settings can be changed via the console.
// ==UserScript== | |
// @name SmImgShow | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-05-30 | |
// @description Show all images on a site. | |
// @author romw314 | |
// @match https://*/* | |
// @icon data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAQAAAAm93DmAAAA9ElEQVR4Ae2WSRmEMAyFkYCESqiESkBCJPT0zpWChEpAAhIqAQWzz2S2EtL5MjeSY973k422Xc3gkZAx3T0jwXe/GggFx4oXUDss1GEv0NCCSzgqPGlx41smEf6lo/Et87EtuwW00ttFnSUCS2e4VZXDzLogAwvjelHXM7JIssjFus3WOC6ctvMj5Z7KOcILAjkBL883qoFRnDWy+D2pplwPT7dw12B34FQPzv8BLnZA85Jth2K/NvaLbf3rsaT9cDA+vswPWKMrgJ0sLylG6rPUOZlc9CAlUv8UUSP1j6V2pGQ7ckcO1shkgGMkA22QA9LZwwlNpFq6jAikkgAAAABJRU5ErkJggg== | |
// @grant none | |
// @sandbox DOM |
RTEx is a userscript to limit switching and visiting sites.
Warning
The password protection is not secure, it stores the raw password. The password can be leaked and the settings can be changed via the console.
(function webpackUniversalModuleDefinition(root, factory) { | |
if(typeof exports === 'object' && typeof module === 'object') | |
module.exports = factory(); | |
else if(typeof define === 'function' && define.amd) | |
define([], factory); | |
else if(typeof exports === 'object') | |
exports["supabase"] = factory(); | |
else | |
root["supabase"] = factory(); | |
})(self, () => { |
/** | |
* @license | |
* Copyright 2020 Google LLC | |
* SPDX-License-Identifier: Apache-2.0 | |
*/ | |
/** | |
* @fileoverview Demo ducks for Pond battle. | |
* @author [email protected] (Neil Fraser) | |
*/ |
name: Dependabot auto-approve | |
on: pull_request_target | |
permissions: | |
pull-requests: write | |
# From the docs at https://github.com/dependabot/fetch-metadata#enabling-auto-merge | |
jobs: | |
dependabot: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }} |