Random Rotation
Randomly rotates everything on every webpage you visit.
Apa itu Random Rotation?
Random Rotation adalah ekstensi Chrome yang dikembangkan oleh Joseph Feld, dan fitur utamanya adalah "Randomly rotates everything on every webpage you visit.".
Unduh Berkas CRX Ekstensi Random Rotation
Unduh file ekstensi Random Rotation dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Random Rotation |
ID | dnpffiachmphafhmajpcfalbmihgdkob |
URL Resmi | https://chromewebstore.google.com/detail/random-rotation/dnpffiachmphafhmajpcfalbmihgdkob |
Deskripsi | Randomly rotates everything on every webpage you visit. |
Ukuran File | 8.36 KB |
Jumlah Instalasi | 52 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2018-09-03 |
Tanggal Publikasi | 2018-09-03 |
Penilaian | 4.50/5 Total 2 Penilaian |
Pengembang | Joseph Feld |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } } |