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== | |
// @name Stop visibility tracking | |
// @namespace https://alexandre.alapetite.fr/ | |
// @description Stop Web page visibility tracking (e.g. forcing a video to stop if its tab is not in focus) | |
// @version 1.0 | |
// @grant none | |
// @match https://example.net/* | |
// ==/UserScript== | |
//NB: You should manually add the Web sites you want to target in your user-specific inclusion list. |
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
/* jshint esversion:6, bitwise:false, node:true, strict:true */ | |
/* globals msg */ | |
"use strict"; | |
/** | |
* Node-RED function to decode Axioma water meter payloads. | |
* Example assuming that msg.req.body contains an HTTP POST callback from The Things Networks. | |
*/ | |
function statusAxiomaShort(s) { | |
const messages = []; |
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
{ | |
"packages":[ | |
{ | |
"name":"RFduino", | |
"maintainer":"RFduino", | |
"websiteURL":"https://github.com/RFduino/RFduino", | |
"email":"support@rfduino.com", | |
"help":{ | |
"online":"https://github.com/RFduino/RFduino" | |
}, |