Signup Block
Remove signup dialogs and view the content of some websites without signing up.
Signup Block란 무엇입니까?
Signup Block은(는) Mohamed Moussa에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove signup dialogs and view the content of some websites without signing up."입니다.
확장 프로그램 스크린샷
Signup Block 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Signup Block removes signup pop-ups and allows you to view the content of some websites without signing up. It currently supports almost two dozen websites, including Quora, Pinterest, and the National Post. This extension has two modes: manual and automatic. It comes installed in manual mode, in which the user needs to click the Signup Block icon to remove the signup requirement on the page. To change the extension into automatic mode, go to the extensions section, under Signup Block click "Options", and then check the available checkbox. In automatic mode, the Signup Block extension will be automatically run when a page is loaded. To run Signup Block, you can use the keyboard shortcut Alt + Shift + X. To toggle Signup Block between automatic and manual mode, you can use the keyboard shortcut Alt + T. Full list of supported sites: https://github.com/mmmoussa/Signup-Block/blob/master/Supported%20sites.md
확장 프로그램 기본 정보
이름 | |
ID | joiaigcocfbhjbgeajdmmgchlbepelco |
공식 URL | https://chrome.google.com/webstore/detail/signup-block/joiaigcocfbhjbgeajdmmgchlbepelco |
설명 | Remove signup dialogs and view the content of some websites without signing up. |
파일 크기 | 48.53 KB |
설치 횟수 | 2,000 |
현재 버전 | 1.1 |
최근 업데이트 | 2015-06-08 |
출시 날짜 | 2015-06-08 |
평점 | 1.80/5 총 25 개의 평점 |
개발자 | Mohamed Moussa |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Signup Block", "description": "Remove signup dialogs and view the content of some websites without signing up.", "version": "1.1", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_icon": "icon-128.png", "default_title": "Signup Block" }, "background": { "scripts": [ "jquery-2.1.3.min.js", "background.js" ] }, "commands": { "toggle-feature-foo": { "suggested_key": { "default": "Alt+T" }, "description": "Toggle automatic signup removal feature" }, "_execute_browser_action": { "suggested_key": { "windows": "Alt+Shift+X", "mac": "Alt+Shift+X", "chromeos": "Alt+Shift+X", "linux": "Alt+Shift+X" } } }, "permissions": [ "tabs", "activeTab", "http:\/\/*\/*", "storage" ] } |