Roundabout Douban
Skip account verification
Roundabout Doubanとは何ですか?
Roundabout Doubanはgetdrunkandcodeによって開発されたChromeの拡張機能で、その主な機能は「Skip account verification」です。
拡張機能のスクリーンショット
Roundabout Douban拡張機能のCRXファイルをダウンロード
Roundabout Douban拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
3/23/2019 update
Update the code to accommodate the new change from Douban.
=============
* Skip phone number verification
* Disable auto complete on reply box 拡張機能の基本情報
| 名前 | |
| ID | gepbfljgfnliohklcbfkcgijcgfobgdf |
| 公式URL | https://chrome.google.com/webstore/detail/roundabout-douban/gepbfljgfnliohklcbfkcgijcgfobgdf |
| 説明 | Skip account verification |
| ファイルサイズ | 41.9 KB |
| インストール数 | 107 |
| 現在のバージョン | 0.1.0 |
| 最終更新日 | 2019-03-23 |
| 公開日 | 2019-03-23 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | getdrunkandcode |
| 支払い方法 | free |
| 対応言語 | 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
} | |