jordwest / news-feed-eradicator

A browser extension that deletes your news feed and replaces it with a nice quote
MIT License
1.16k stars 280 forks source link

[Issue] Github: The "Latest changes" section still display on desktop's homepage #265

Open Khanaru220 opened 1 year ago

Khanaru220 commented 1 year ago

image

HTML of "Lastest changes" component on Chrome:

<aside class="team-left-column width-fit col-md-3 col-lg-4 mt-5 hide-lg hide-md hide-sm border-bottom">

    <div class="mb-4 dashboard-changelog ">
        <h2 class="f5 text-bold mb-3">Latest changes</h2>

        <ul class="list-style-none">
            <li class="TimelineItem TimelineItem--condensed ml-1 pt-0 pb-3">
                <div class="TimelineItem-badge mt-0 color-bg-transparent">
                    <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true"
                        class="octicon octicon-dot-fill mb-2">
                        <path d="M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z"></path>
                    </svg>
                </div>
                <div class="TimelineItem-body mt-n1">
                    <div class="text-small color-fg-muted dashboard-changelog-timestamp"><relative-time
                            datetime="2023-05-10T23:55:49Z" class="no-wrap" title="May 11, 2023, 6:55 AM GMT+7">May 11,
                            2023</relative-time></div>
                    <a class="Link--primary line-clamp-2"
                        href="https://github.blog/changelog/2023-05-10-aiven-is-a-github-secret-scanning-partner">Aiven is a GitHub
                        secret scanning partner</a>
                </div>
            </li>
            <li class="TimelineItem TimelineItem--condensed ml-1 pt-0 pb-3">
                <div class="TimelineItem-badge mt-0 color-bg-transparent">
                    <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true"
                        class="octicon octicon-dot-fill mb-2">
                        <path d="M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z"></path>
                    </svg>
                </div>
                <div class="TimelineItem-body mt-n1">
                    <div class="text-small color-fg-muted dashboard-changelog-timestamp"><relative-time
                            datetime="2023-05-10T19:47:19Z" class="no-wrap" title="May 11, 2023, 2:47 AM GMT+7">May 11,
                            2023</relative-time></div>
                    <a class="Link--primary line-clamp-2"
                        href="https://github.blog/changelog/2023-05-10-display-pronouns-on-github-mobile-profile">Display pronouns
                        on GitHub Mobile profile</a>
                </div>
            </li>
            <li class="TimelineItem TimelineItem--condensed ml-1 pt-0 pb-3">
                <div class="TimelineItem-badge mt-0 color-bg-transparent">
                    <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true"
                        class="octicon octicon-dot-fill mb-2">
                        <path d="M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z"></path>
                    </svg>
                </div>
                <div class="TimelineItem-body mt-n1">
                    <div class="text-small color-fg-muted dashboard-changelog-timestamp"><relative-time
                            datetime="2023-05-10T16:28:31Z" class="no-wrap" title="May 10, 2023, 11:28 PM GMT+7">May 10,
                            2023</relative-time></div>
                    <a class="Link--primary line-clamp-2"
                        href="https://github.blog/changelog/2023-05-10-github-actions-actions-runner-controller-public-beta">GitHub
                        Actions – Actions Runner Controller Public Beta</a>
                </div>
            </li>
            <li class="TimelineItem TimelineItem--condensed ml-1 pt-0 pb-0">
                <div class="TimelineItem-badge mt-0 color-bg-transparent">
                    <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true"
                        class="octicon octicon-dot-fill mb-2">
                        <path d="M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z"></path>
                    </svg>
                </div>
                <div class="TimelineItem-body mt-n1">
                    <div class="text-small color-fg-muted dashboard-changelog-timestamp"><relative-time
                            datetime="2023-05-09T19:11:15Z" class="no-wrap" title="May 10, 2023, 2:11 AM GMT+7">May 10,
                            2023</relative-time></div>
                    <a class="Link--primary line-clamp-2"
                        href="https://github.blog/changelog/2023-05-09-secret-scannings-push-protection-is-available-on-public-repositories-for-free">Secret
                        scanning’s push protection is available on public repositories, for free</a>
                </div>
            </li>
        </ul>

        <div class="ml-1 pt-2 pl-4 border-left color-border-muted">
            <a class="text-small mt-2 Link--muted" href="https://github.blog/changelog">View changelog →</a>
        </div>
    </div>

</aside>