Random Rotation
Randomly rotates everything on every webpage you visit.
Random Rotationとは何ですか?
Random RotationはJoseph Feldによって開発されたChromeの拡張機能で、その主な機能は「Randomly rotates everything on every webpage you visit.」です。
Random Rotation拡張機能のCRXファイルをダウンロード
Random Rotation拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension does more than just rotate everything on the page into an unreadable mess, it solves all your problems in life. By making everything comically unreadable, it will clear your mind and help you find inner peace. You can also turn it off if you want.
拡張機能の基本情報
名前 | Random Rotation |
ID | dnpffiachmphafhmajpcfalbmihgdkob |
公式URL | https://chromewebstore.google.com/detail/random-rotation/dnpffiachmphafhmajpcfalbmihgdkob |
説明 | Randomly rotates everything on every webpage you visit. |
ファイルサイズ | 8.36 KB |
インストール数 | 52 |
現在のバージョン | 1.1 |
最終更新日 | 2018-09-03 |
公開日 | 2018-09-03 |
評価 | 4.50/5 合計 2 レビュー |
開発者 | Joseph Feld |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Random Rotation", "short_name": "Randomly Rotate", "description": "Randomly rotates everything on every webpage you visit.", "version": "1.1", "browser_action": { "default_icon": "icon128.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content script.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": true } } |