Skip to content
View AymaneHrouch's full-sized avatar
💭
Kaizen
💭
Kaizen
  • Société Générale Africa Technologies & Services
  • Casablanca, Morocco

Block or report AymaneHrouch

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. WhatsappBackupReader WhatsappBackupReader Public

    A simple tool that converts exported whatsapp discussions to readable html file

    JavaScript 9 2

  2. Cancel_sent_requests_facebook.js Cancel_sent_requests_facebook.js
    1
    // Visit : https://mobile.facebook.com/friends/center/requests/outgoing/
    2
    // scroll as much as you can
    3
    // past below code to the console, press enter and you're done!
    4
    //
    5
    //
  3. Auto subscribe to a lot of subreddit... Auto subscribe to a lot of subreddits after you move to a new account.
    1
    /*
    2
    -Visit https://old.reddit.com/subreddits/ using your old account
    3
    -Copy link address of "multireddit of your subscriptions"
    4
     It will give you a link address like this: https://old.reddit.com/r/[subreddit1+subreddit2...+subredditN]
    5
     Please note that if you have a lot of subreddits the link won't work because there's a limit to the link's length, you can simply split it to two or three links
  4. Bookmark to cancel pending sent requ... Bookmark to cancel pending sent requests on Facebook.
    1
    // COPY JUST THE LINE BELOW //
    2
    javascript:var validUrl = new RegExp("https://m(obile)?.facebook.com/friends/center/requests/outgoing.*"); if(validUrl.test(document.URL)){if(confirm("Are you sure?\nPress OK to confirm")){var requestsNumber = document.querySelectorAll('[data-sigil="undoable-action"]').length; for (var i=0; i < requestsNumber; i++) {document.querySelectorAll('[data-sigil="undoable-action"]')[i].children[1].children[0].children[2].children[2].children[0].click(); } alert(`${requestsNumber} request has been cancelled successfully`);}}else{if(confirm("Press OK to be redirected...")){window.open("https://m.facebook.com/friends/center/requests/outgoing");}}
    3
    // COPY JUST THE LINE ABOVE //
    4
    
                  
    5
    /*