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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>URL Intent Fetcher</title> | |
</head> | |
<body> | |
<div id="intentContent"></div> | |
<script> | |
// Get the div where we'll display the fetched content |
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
RegEx for E-Mail Adresses | |
[A-Za-z0-9\-\_\.\+]{1,64}@[A-Za-z0-9\-\_\.]+\.[a-zA-Z]+ | |
Mit <> | |
\<[A-Za-z0-9\-\_\.\+]{1,64}@[A-Za-z0-9\-\_\.]+\.[a-zA-Z\>]+ | |
https://www.regextester.com/ |
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
javascript:(function(){var%20a=window.getSelection(),b='';if(a!=''){a=encodeURIComponent(a)}else{a='u='+encodeURIComponent(location.href);b='translate'};window.open('https://app.linguee.de/deutsch-englisch/search?source=auto&query='+b+a,'_blank','height=800,width=600,noreferrer,noopener')})(); | |
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
/* Github: https://github.com/aris-t2/customcssforfx /statusbar_color.css **/ | |
:root { | |
/* --statusbar_background_color: silver; */ | |
--statusbar_font_color: navy; | |
} | |
:-moz-any(statuspanel,#statuspanel) { | |
-moz-appearance: none !important; | |
background: unset !important; | |
border: 0 !important; | |
} |
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
/* Hide address-bar AND Tabs unless mouse over https://www.reddit.com/r/FirefoxCSS/comments/hyqj5y/hide_addressbar_and_tabs_unless_mouse_over/ */ | |
#nav-bar { | |
/* customize this value. */ | |
--navbar-margin: -32px; | |
margin-top: 0; | |
margin-bottom: var(--navbar-margin); | |
z-index: -100; | |
} | |
#navigator-toolbox:focus-within > #nav-bar, |
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
// Wheat flour icon made by Freepik from www.flaticon.com and modified by achisto | |
// Toilet paper icon made by boettges | |
let country = 'de' // replace with 'at' for shops in Austria | |
let storeId = 251 | |
let param = args.widgetParameter | |
if (param != null && param.length > 0) { | |
storeId = param | |
} |
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
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// icon-color: orange; icon-glyph: sun-2; | |
/////////////////////////////////////////////////////////////////////// | |
// dawn2dusk.js | |
// Take it and have fun. | |
// Hendrik Runte, Oct 24, 2020. | |
/////////////////////////////////////////////////////////////////////// | |
// Extending the JavaScritp Date object. |
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
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// icon-color: red; icon-glyph: calendar-alt; | |
// NOTE: this currently only works in beta because it takes advantage of the widgetStack and URL scheme for on-tap. | |
// TEST MODE: run the first time with it true to get access to your calendars; you can also run the sample Scriptable overdue Reminders script to get access to your reminders | |
const TEST_MODE = false | |
// CALENDAR/REMINDERS SETUP: calendar and reminder names should match what's shown in the Calendar and Reminder apps |
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
<?php | |
/** | |
* Plugin Countdown: Displays countdown from a specific date | |
* Syntax: <COUNTDOWN:date|description> | |
* date has to be formatted as GNU date (see strtotime) | |
* e.g. <COUNTDOWN:yyyy-mm-dd|description> | |
* <COUNTDOWN:mm/dd/yyy|description> | |
* | |
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html) | |
* @author Ekkart Kleinod <ekkart [at] ekkart.de> (V 2.x) |
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
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// icon-color: deep-blue; icon-glyph: magic; | |
let storeId = 2612 | |
// HH Steinstraße | |
let country | |
let param = args.widgetParameter | |
if (param != null && param.length > 0) { | |
storeId = param | |
} |
NewerOlder