lordwelch 6fab6022d0 Remove grab
Switch to using bootstrap-table
Add DownThemAll plugin
Remove Firefox plugin
2021-01-09 16:36:18 -08:00

19 lines
318 B
TypeScript

"use strict";
// License: MIT
export const ALLOWED_SCHEMES = Object.freeze(new Set<string>([
"http:",
"https:",
"ftp:",
]));
export const TRANSFERABLE_PROPERTIES = Object.freeze([
"fileName",
"title",
"description"
]);
export const TYPE_LINK = 1;
export const TYPE_MEDIA = 2;
export const TYPE_ALL = 3;