My Scroll Button
Simply scrolling to top or bottom
Vad är My Scroll Button?
My Scroll Button är en Chrome-tillägg utvecklad av N.Zetoutou, och dess huvudfunktion är "Simply scrolling to top or bottom".
Tilläggsskärmbilder
Ladda ner My Scroll Button-förlängningens CRX-fil
Ladda ner My Scroll Button-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
A simple scroll button. Perfect for tumblr or twitter which use endless loading. you can disable for specific site and your seetings is always synced with Chrome sync (you must check "extensions" in google chrome sync) This extension has very light code (~ 6k without scroll image). Enjoys ! ************************ my other extensions *************** https://chrome.google.com/webstore/detail/font-playground/hdpmpnhaoddjelneingmbnhaibbmjgno https://chrome.google.com/webstore/detail/fast-bookmark-scanner/gjcmklpilmpfhfjpebhnapnglcppdbic https://chrome.google.com/webstore/detail/click-counter-beta/pjjhodhefdnglbaaogjilbficnccehlf
Grundläggande Information om Tillägg
Namn | My Scroll Button |
ID | pbpnciineegkfenpaaebjmbmmbhocipf |
Officiell webbadress | https://chromewebstore.google.com/detail/my-scroll-button/pbpnciineegkfenpaaebjmbmmbhocipf |
Beskrivning | Simply scrolling to top or bottom |
Filstorlek | 14.9 KB |
Antal Installationer | 285 |
Aktuell Version | 2017.11.15 |
Senast Uppdaterad | 2017-11-15 |
Publiceringsdatum | 2017-11-15 |
Betyg | 4.14/5 Totalt 14 Betyg |
Utvecklare | N.Zetoutou |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "My Scroll Button", "version": "2017.11.15", "description": "Simply scrolling to top or bottom", "icons": { "16": "icon-ext-48.png", "48": "icon-ext-48.png", "128": "icon-ext-48.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "css": [ "content_script.css" ] } ], "browser_action": { "default_icon": "icon-ext-48.png", "default_popup": "browser_action.html" }, "web_accessible_resources": [ "icon-up.png" ], "permissions": [ "storage", "activeTab" ], "manifest_version": 2 } |