Roundabout Douban
Skip account verification
What is Roundabout Douban?
Roundabout Douban is a Chrome extension developed by getdrunkandcode, and its main feature is "Skip account verification".
Extension Screenshots
Download Roundabout Douban Extension CRX File
Download Roundabout Douban extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
3/23/2019 update Update the code to accommodate the new change from Douban. ============= * Skip phone number verification * Disable auto complete on reply box
Extension Basic Information
Name | |
ID | gepbfljgfnliohklcbfkcgijcgfobgdf |
Official URL | https://chrome.google.com/webstore/detail/roundabout-douban/gepbfljgfnliohklcbfkcgijcgfobgdf |
Description | Skip account verification |
File Size | 41.9 KB |
Installation Count | 107 |
Current Version | 0.1.0 |
Last Updated | 2019-03-23 |
Publish Date | 2019-03-23 |
Rating | 5.00/5 Total 2 Ratings |
Developer | getdrunkandcode |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Roundabout Douban", "description": "Skip account verification", "version": "0.1.0", "background": { "scripts": [ "popup.js" ], "persistent": false }, "permissions": [ "tabs", "declarativeContent", "https:\/\/www.douban.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/www.douban.com\/*" ], "js": [ "jquery-v3.1.0.min.js", "skipVerification.js" ], "run_at": "document_end" } ], "page_action": { "default_title": "Roundabout Douban", "default_popup": "popup.html" }, "icons": { "128": "icon.png" }, "manifest_version": 2 } |