yeild payment
name HOLIDAY
bust HOLIDAY
author Adjatha
This file contains hidden or 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
openapi: 3.0.0 | |
info: | |
title: e621 API | |
version: 1.0.0 | |
description: | | |
e621 offers a simple API to make scripting easy. All you need is a way to GET and POST to URLs. The ability to parse JSON or XML responses is nice, but not critical. The simplicity of the API means you can write scripts using JavaScript, Perl, Python, Ruby, even shell languages like bash or tcsh. | |
Changes | |
==== | |
There are several changes to the API: |
This file contains hidden or 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
browser.menus.create({ | |
id: "decode-doctor", | |
// Decode Doctor is the actual name of the internal logging system | |
title: "Enable Decode Doctor", | |
type: "normal", | |
contexts: ["video", "audio"], | |
}); | |
browser.menus.create({ | |
id: "decode-doctor-log", |
This file contains hidden or 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
var FuncCatalog = (_.invert(_.pickBy(TF.ItemEffects, function(val){return typeof val === "function"}))); | |
for(var item in _.pickBy(Items, function(value){return value instanceof TFItem})){ | |
console.log(Items[item].name); | |
if (!Items[item].effects) { | |
console.log("\t" + "Not defined as an effect list"); | |
} | |
Items[item].effects.forEach(function(effect){ | |
var effectLine = "\t"; |