Page Rotate
Rotate any web page with the click of a button.
Co je Page Rotate?
Page Rotate je rozšíření Chrome vyvinuté Jesse Skinner, a jeho hlavní funkcí je „Rotate any web page with the click of a button.“.
Stáhnout soubor CRX rozšíření Page Rotate
Stáhněte si soubory rozšíření Page Rotate ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Základní Informace o Rozšíření
Název | |
ID | igefdeghmmfballonnobhendpkeinikc |
Oficiální URL | https://chrome.google.com/webstore/detail/page-rotate/igefdeghmmfballonnobhendpkeinikc |
Popis | Rotate any web page with the click of a button. |
Velikost souboru | 17.03 KB |
Počet instalací | 2,000 |
Aktuální Verze | 0.1 |
Poslední Aktualizace | 2013-11-21 |
Datum Vydání | 2013-11-21 |
Hodnocení | 2.85/5 Celkem 27 Hodnocení |
Vývojář | Jesse Skinner |
Typ Platby | free |
Podporované Jazyky | 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" } } |