Sagive POPUP Blocker
An attempt to build a better simpler popup blocker
Sagive POPUP Blocker란 무엇입니까?
Sagive POPUP Blocker은(는) Sagive SEO에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An attempt to build a better simpler popup blocker"입니다.
확장 프로그램 스크린샷
Sagive POPUP Blocker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A personal evolving popup blocker which works currently on urls entered to a list. I created this to watch videos online without the popups controlling my browser! a list of current urls i am blocking can be found here: https://goo.gl/2SQxVL
확장 프로그램 기본 정보
이름 | |
ID | gcainaanppgliejbnkbepejpfepkpbbn |
공식 URL | https://chrome.google.com/webstore/detail/sagive-popup-blocker/gcainaanppgliejbnkbepejpfepkpbbn |
설명 | An attempt to build a better simpler popup blocker |
파일 크기 | 132 KB |
설치 횟수 | 384 |
현재 버전 | 0.0.16 |
최근 업데이트 | 2016-11-18 |
출시 날짜 | 2016-11-18 |
평점 | 3.00/5 총 2 개의 평점 |
개발자 | Sagive SEO |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Sagive POPUP Blocker", "version": "0.0.16", "options_page": "parts\/options.html", "description": "An attempt to build a better simpler popup blocker", "browser_action": { "default_popup": "parts\/popdown.html" }, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "permissions": [ "storage", "tabs", "activeTab", "windows", "background", "browsingData", "webRequest", "webRequestBlocking", "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/styles.css" ] } ], "background": { "scripts": [ "js\/background.js" ], "persistent": true } } |