Skip to content
View alfrededison's full-sized avatar

Block or report alfrededison

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. dotfiles dotfiles Public

    Common dotfiles for Linux workspaces

    Shell 1

  2. My-Linux-Setups My-Linux-Setups Public

    My scripts to setup an env for Linux workspace

    Vim Script

  3. [Remove webpage links] Add this snip... [Remove webpage links] Add this snippet to bookmark bar to quickly remove all links in a page for ease of copying text
    1
    javascript:(function(){
    2
      document.getElementsByTagName('body')[0].style.pointerEvents = 'none';
    3
      alert('links and click events are disabled!');
    4
    })()
  4. [Copy webpage title] Add this snippe... [Copy webpage title] Add this snippet to bookmark bar to copy current webpage's title
    1
    javascript:(function() {
    2
      var title = document.title;
    3
      var tempInput = document.createElement('input');
    4
      tempInput.setAttribute('value', title);
    5
      document.body.appendChild(tempInput);