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文件
下载Signup Block扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" ] } |