Page Rotate
Rotate any web page with the click of a button.
Vad är Page Rotate?
Page Rotate är en Chrome-tillägg utvecklad av Jesse Skinner, och dess huvudfunktion är "Rotate any web page with the click of a button.".
Ladda ner Page Rotate-förlängningens CRX-fil
Ladda ner Page Rotate-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Grundläggande Information om Tillägg
Namn | |
ID | igefdeghmmfballonnobhendpkeinikc |
Officiell webbadress | https://chrome.google.com/webstore/detail/page-rotate/igefdeghmmfballonnobhendpkeinikc |
Beskrivning | Rotate any web page with the click of a button. |
Filstorlek | 17.03 KB |
Antal Installationer | 2,000 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2013-11-21 |
Publiceringsdatum | 2013-11-21 |
Betyg | 2.85/5 Totalt 27 Betyg |
Utvecklare | Jesse Skinner |
Betalningssätt | free |
Stödda Språk | 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" } } |