Click-to-hide
Hide elements on page by clicking on them.
Click-to-hide란 무엇입니까?
Click-to-hide은(는) http://mattconn.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide elements on page by clicking on them."입니다.
Click-to-hide 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
# Click-to-hide
Chrome extension to delete element on page by clicking on it. Useful for ads and other page blocking elements.
## To Use:
Click on the Click-to-hide icon to enable the extension. You will know that the extension is enabled when you see your cursor appear as a crosshair. The script will then be enabled for one click at a time.
Cick on any element on the page to effectively remove or hide it. To remove another element on the page, click on the extension icon again to re-enable, and repeat this process for any remaining elements on the page that you wish to remove. 확장 프로그램 기본 정보
| 이름 | |
| ID | lcdicpnpgjfaodmccefekkfecadllbjg |
| 공식 URL | https://chrome.google.com/webstore/detail/click-to-hide/lcdicpnpgjfaodmccefekkfecadllbjg |
| 설명 | Hide elements on page by clicking on them. |
| 파일 크기 | 5.16 KB |
| 설치 횟수 | 127 |
| 현재 버전 | 1.0.1 |
| 최근 업데이트 | 2018-02-13 |
| 출시 날짜 | 2018-02-13 |
| 평점 | 3.00/5 총 2 개의 평점 |
| 개발자 | http://mattconn.io |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 확장 프로그램 웹 사이트 | https://github.com/mattConn/chrome-click-to-hide |
| 지원되는 언어 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Click-to-hide",
"description": "Hide elements on page by clicking on them.",
"version": "1.0.1",
"permissions": [
"activeTab",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/*\/*"
],
"css": [
"style.css"
]
}
],
"browser_action": {
"default_title": "Click-to-hide"
},
"icons": {
"128": "icon128.png"
},
"manifest_version": 2
} | |