EasyPan Hand Tool
Scroll web pages by dragging them with your mouse
Vad är EasyPan Hand Tool?
EasyPan Hand Tool är en Chrome-tillägg utvecklad av davidu, och dess huvudfunktion är "Scroll web pages by dragging them with your mouse".
Tilläggsskärmbilder
Ladda ner EasyPan Hand Tool-förlängningens CRX-fil
Ladda ner EasyPan Hand Tool-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
EasyPan makes browsing more comfortable.
It allows you to pan a web page (scroll by grabbing the page), just like you do when reading a PDF document.
Using the tool:
Click the hand icon to enable/disable the hand-tool.
When the tool is enabled, clicking Ctrl temporarily disable it.
**Feedback and suggestions are more than welcome**
If there is a bug please elaborate in its description so I can attend it.
----
Credits:
Extension's image icon:
http://www.designcontest.com
Extension's button icon:
www.fatcow.com/free-icons Grundläggande Information om Tillägg
| Namn | |
| ID | egcoefibmfbgpclkjljnmnljppfaafio |
| Officiell webbadress | https://chromewebstore.google.com/detail/easypan-hand-tool/egcoefibmfbgpclkjljnmnljppfaafio |
| Beskrivning | Scroll web pages by dragging them with your mouse |
| Filstorlek | 12.43 KB |
| Antal Installationer | 670 |
| Aktuell Version | 3.0 |
| Senast Uppdaterad | 2015-02-13 |
| Publiceringsdatum | 2015-02-13 |
| Betyg | 3.46/5 Totalt 26 Betyg |
| Utvecklare | davidu |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "EasyPan Hand Tool",
"short_name": "EasyPan",
"manifest_version": 2,
"description": "Scroll web pages by dragging them with your mouse",
"version": "3.0",
"permissions": [],
"page_action": {
"default_icon": {
"38": "images\/iconGray38.png"
}
},
"background": {
"scripts": [
"background.js"
],
"persist": false
},
"web_accessible_resources": [
"images\/*.cur"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"pan.js"
]
}
]
} | |