Page Rotate
Rotate any web page with the click of a button.
Co to jest Page Rotate?
Page Rotate to rozszerzenie Chrome opracowane przez Jesse Skinner, a jego główną funkcją jest „Rotate any web page with the click of a button.”.
Pobierz plik CRX rozszerzenia Page Rotate
Pobierz pliki rozszerzeń Page Rotate 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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | igefdeghmmfballonnobhendpkeinikc |
Oficjalny URL | https://chrome.google.com/webstore/detail/page-rotate/igefdeghmmfballonnobhendpkeinikc |
Opis | Rotate any web page with the click of a button. |
Rozmiar pliku | 17.03 KB |
Liczba instalacji | 2,000 |
Aktualna Wersja | 0.1 |
Ostatnia Aktualizacja | 2013-11-21 |
Data Publikacji | 2013-11-21 |
Ocena | 2.85/5 Łącznie 27 Oceny |
Deweloper | Jesse Skinner |
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": "Page Rotate", "version": "0.1", "description": "Rotate any web page with the click of a button.", "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "pagerotate.js", "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "page_action": { "default_icon": { "19": "icons\/19.png", "38": "icons\/38.png" }, "default_title": "Page Rotate" } } |