Page Rotate
Rotate any web page with the click of a button.
Apa itu Page Rotate?
Page Rotate adalah ekstensi Chrome yang dikembangkan oleh Jesse Skinner, dan fitur utamanya adalah "Rotate any web page with the click of a button.".
Unduh Berkas CRX Ekstensi Page Rotate
Unduh file ekstensi Page Rotate 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
Informasi Dasar Ekstensi
Nama | |
ID | igefdeghmmfballonnobhendpkeinikc |
URL Resmi | https://chrome.google.com/webstore/detail/page-rotate/igefdeghmmfballonnobhendpkeinikc |
Deskripsi | Rotate any web page with the click of a button. |
Ukuran File | 17.03 KB |
Jumlah Instalasi | 2,000 |
Versi Saat Ini | 0.1 |
Terakhir Diperbarui | 2013-11-21 |
Tanggal Publikasi | 2013-11-21 |
Penilaian | 2.85/5 Total 27 Penilaian |
Pengembang | Jesse Skinner |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } } |