Page Scroller

Adds Scroll function to your mouse.

Vad är Page Scroller?

Page Scroller är en Chrome-tillägg utvecklad av hiatamaworkshop, och dess huvudfunktion är "Adds Scroll function to your mouse.".

Tilläggsskärmbilder

screenshot

Ladda ner Page Scroller-förlängningens CRX-fil

Ladda ner Page Scroller-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

                        - Holding left click button and touching the left end of the screen will scroll back to the top of the page. 

- Holding left click button and touching the right end of the screen will cancel the previous scroll.                    

Grundläggande Information om Tillägg

Namn Page Scroller Page Scroller
ID hfknpfhjgikidapfikdknedojecdlehn
Officiell webbadress https://chrome.google.com/webstore/detail/page-scroller/hfknpfhjgikidapfikdknedojecdlehn
Beskrivning Adds Scroll function to your mouse.
Filstorlek 8.28 KB
Antal Installationer 93
Aktuell Version 0.1.1
Senast Uppdaterad 2017-01-11
Publiceringsdatum 2017-01-11
Utvecklare hiatamaworkshop
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Page Scroller",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "Adds Scroll function to your mouse.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_popup": "scroller.html",
        "default_icon": "icons\/icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "",
        "storage",
        "tabs"
    ]
}