Random Rotation
Randomly rotates everything on every webpage you visit.
Co to jest Random Rotation?
Random Rotation to rozszerzenie Chrome opracowane przez Joseph Feld, a jego główną funkcją jest „Randomly rotates everything on every webpage you visit.”.
Pobierz plik CRX rozszerzenia Random Rotation
Pobierz pliki rozszerzeń Random Rotation w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Random Rotation |
ID | dnpffiachmphafhmajpcfalbmihgdkob |
Oficjalny URL | https://chromewebstore.google.com/detail/random-rotation/dnpffiachmphafhmajpcfalbmihgdkob |
Opis | Randomly rotates everything on every webpage you visit. |
Rozmiar pliku | 8.36 KB |
Liczba instalacji | 52 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2018-09-03 |
Data Publikacji | 2018-09-03 |
Ocena | 4.50/5 Łącznie 2 Oceny |
Deweloper | Joseph Feld |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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 } } |