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
const axios = require('axios'); | |
const cheerio = require('cheerio'); | |
class AnimePahe { | |
constructor() { | |
this.providerName = "animepahe"; | |
this.headers = { | |
'Cookie': "__ddg1=;__ddg2_=", | |
'referer': "https://animepahe.ru/", | |
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36' |
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
[ | |
{ | |
"name": "AnimePahe", | |
"version": "1.0.0", | |
"downloadUrl": "https://gist.githubusercontent.com/itsdevmj/adbcf9bbe894af162e31b54a6573cd68/raw/0d0d8679cd4d42092ae42968883f8154175e597d/animepahe_extension.js", | |
"className": "AnimePaheExtension", | |
"iconUrl": "https://animepahe.ru/favicon.ico" | |
}, | |
{ | |
"name": "GogoAnime", |
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
#!/bin/bash | |
# Arch Linux Hyprland Setup Script | |
# This script installs Hyprland and related packages using paru | |
set -e # Exit on any error | |
# Colors for output | |
RED='\033[0;31m' | |
GREEN='\033[0;32m' |