├── .gitignore ├── Procfile ├── README.md ├── bin └── screenshotAll ├── cloudflare-config.js ├── cloudinary-config.js ├── main.js ├── modules ├── format-mdn-feature-title.js ├── get-feature-list.js ├── get-mdn-browser-compat-data.js ├── screenshot-all.js ├── take-screenshot.js ├── take-screenshots.js ├── trim-screenshot.js ├── update-cloudflare.js ├── upload-screenshot.js └── upload-screenshots.js ├── package.json └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/README.md -------------------------------------------------------------------------------- /bin/screenshotAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/bin/screenshotAll -------------------------------------------------------------------------------- /cloudflare-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/cloudflare-config.js -------------------------------------------------------------------------------- /cloudinary-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/cloudinary-config.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/main.js -------------------------------------------------------------------------------- /modules/format-mdn-feature-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/modules/format-mdn-feature-title.js -------------------------------------------------------------------------------- /modules/get-feature-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/modules/get-feature-list.js -------------------------------------------------------------------------------- /modules/get-mdn-browser-compat-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/modules/get-mdn-browser-compat-data.js -------------------------------------------------------------------------------- /modules/screenshot-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/modules/screenshot-all.js -------------------------------------------------------------------------------- /modules/take-screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/modules/take-screenshot.js -------------------------------------------------------------------------------- /modules/take-screenshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/modules/take-screenshots.js -------------------------------------------------------------------------------- /modules/trim-screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/modules/trim-screenshot.js -------------------------------------------------------------------------------- /modules/update-cloudflare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/modules/update-cloudflare.js -------------------------------------------------------------------------------- /modules/upload-screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/modules/upload-screenshot.js -------------------------------------------------------------------------------- /modules/upload-screenshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/modules/upload-screenshots.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ireade/caniuse-embed-api/HEAD/test.js --------------------------------------------------------------------------------