Cook's Illustrated Exclusive Search
Fixes Cook's Illustrated search to remove advertisements for other network sites
Cook's Illustrated Exclusive Search란 무엇입니까?
Cook's Illustrated Exclusive Search은(는) amh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fixes Cook's Illustrated search to remove advertisements for other network sites"입니다.
확장 프로그램 스크린샷
Cook's Illustrated Exclusive Search 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
By default, Cook's Illustrated (https://www.cooksillustrated.com) includes search results from all its network sites, even if you do not have a membership to those other sites. These search results are advertisements because the content is locked behind a paywall. After performing a search it is possible to deselect the other sites manually, then the search results will not include any advertisements for network sites. However, browsing to a recipe and performing a *new* search will reset the selected sites requiring them to be deselected manually, *every single time a search is performed*. As an example, the search query `bacon` has 40 results on the first page. Of these 40, only 15 results are for Cook's Illustrated Online. That means that **37% of results are valid** and **63% of results are advertisements**. By default, when the form is submitted with a search term `bacon` the search results page will include results from: * `cio`, aka "Cook's Illustrated Online" * `cco`, aka "Cook's Country Online" * `atk`, aka "America's Test Kitchen" * `cookbook_collection`, aka "Cookbook Collection" * `school`, aka "Cooking School" If you have not paid for subscriptions to all of these sites then the search results will be polluted with advertisements for these network sites. This extension looks for the `atkGlobalSearch` form and modifies the `action` parameter to `/search?dFR[search_site_list][0]=cio&fR[search_cookbook_collection][0]=false`. The search result page will then display results only from Cook's Illustrated Online. The full MIT-licensed source code is available at https://github.com/anothermh/cies.
확장 프로그램 기본 정보
이름 | Cook's Illustrated Exclusive Search |
ID | nidfinggdegnohlahobcpmijobhdejnm |
공식 URL | https://chromewebstore.google.com/detail/cooks-illustrated-exclusi/nidfinggdegnohlahobcpmijobhdejnm |
설명 | Fixes Cook's Illustrated search to remove advertisements for other network sites |
파일 크기 | 7.88 MB |
설치 횟수 | 23 |
현재 버전 | 0.1.0 |
최근 업데이트 | 2018-12-05 |
출시 날짜 | 2018-12-04 |
개발자 | amh |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/anothermh/cies |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cook's Illustrated Exclusive Search", "version": "0.1.0", "description": "Fixes Cook's Illustrated search to remove advertisements for other network sites", "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/www.cooksillustrated.com\/*" ] } ] } |