Hide TV Listings (htvl)

Hide channels or remove all favorites

Hide TV Listings (htvl)란 무엇입니까?

Hide TV Listings (htvl)은(는) devhl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide channels or remove all favorites"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Hide TV Listings (htvl) 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Hide channels on your tv listings website.  This is useful to remove duplicates, ppv, foreign, adult, and anything else you don't want to see in your guide.

This extension modifies Comcast's online TV guide (http://xfinitytv.comcast.net/tv-listings).  This extension is not affiliated with Comcast or Xfinity.


Filter by individual sport (NFL, MLB, NHL, etc.)  This is customizable.  View the options page to customize your buttons.

NOTE:  Notice the htvl Options button.  This is how you configure the settings.

change log
v2.2    Handles changes to the website
v2.1    Added ability to favorite channels
v2.0    Modified for xfinity's updated website
v1.1    Added sort by name/number, tweaked some other features
v1.0.0.1 Version 1 is finally here!  Major code rewrites
v0.97.4 Adds a button to remove channel from most watched list
v0.97.3 Reloads the window every 30 minutes
v0.97.2 Hidden channels now have a dark gray color
v0.97.1 Almost a complete rewrite
              Most Watched feature added
              Last Watched feature added
              Recording feature added
v0.96    Not released
v0.95    Rebranded as htvl
              Massive rewrite of code
              Options are now saved using storage.sync
              Options page created to give a GUI for setting options
v0.9      Removed unneeded permission
v0.8      Now loads automatically after AJAX calls
v0.7      You can now view last selected channels
              Rewrote loops so they should be faster
              Code rewritten to be more clear
v0.6      You can now filter by type of sport
v0.5      Improved the hide a channel feature
v0.4      Removed href attribute to the hide channel anchor
v0.3      Changed CSS formatting that occur when you hide a channel
v0.2      First upload
v0.1      Not published                    

확장 프로그램 기본 정보

이름 Hide TV Listings (htvl) Hide TV Listings (htvl)
ID emahdgfobodhknccbigjmnhpgihmmjbf
공식 URL https://chrome.google.com/webstore/detail/hide-tv-listings-htvl/emahdgfobodhknccbigjmnhpgihmmjbf
설명 Hide channels or remove all favorites
파일 크기 122 KB
설치 횟수 249
현재 버전 2.2
최근 업데이트 2017-01-08
출시 날짜 2017-01-08
평점 4.43/5 총 7 개의 평점
개발자 devhl
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide TV Listings (htvl)",
    "version": "2.2",
    "manifest_version": 2,
    "description": "Hide channels or remove all favorites",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/tv.xfinity.com\/listings"
            ],
            "js": [
                "jquery-1.7.2.min.js",
                "jquery.tinysort.min.js",
                "inject.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "images\/htvl16.png",
        "48": "images\/htvl48.png",
        "128": "appsFromDeveloper\/htvl128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/htvl16.png",
            "24": "images\/htvl48.png",
            "32": "appsFromDeveloper\/htvl128.png"
        },
        "default_title": "Hide TV Listings",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "appsFromDeveloper\/appsFromDeveloper.html",
        "htvlOptions.html",
        "injected.js"
    ],
    "options_page": "htvlOptions.html",
    "permissions": [
        "storage",
        "management"
    ]
}