SelfScroll
This extension allow to automatically scroll the page. Suitable for monitors and kiosks.
Vad är SelfScroll?
SelfScroll är en Chrome-tillägg utvecklad av https://zerobug.it, och dess huvudfunktion är "This extension allow to automatically scroll the page. Suitable for monitors and kiosks.".
Tilläggsskärmbilder
Ladda ner SelfScroll-förlängningens CRX-fil
Ladda ner SelfScroll-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
This extension allow to automatically scroll the page. Suitable for monitors and kiosks.
Buy me a coffe :D
Litecoin: MC8PtUhSL2iJCx5GWrisPZPpgiFE56ejyc
Paypal: https://www.paypal.me/ZeroBug Grundläggande Information om Tillägg
| Namn | |
| ID | lofkbkbhpmeihoaogggfbhmjdekjihlf |
| Officiell webbadress | https://chromewebstore.google.com/detail/selfscroll/lofkbkbhpmeihoaogggfbhmjdekjihlf |
| Beskrivning | This extension allow to automatically scroll the page. Suitable for monitors and kiosks. |
| Filstorlek | 132 KB |
| Antal Installationer | 1,476 |
| Aktuell Version | 1.4 |
| Senast Uppdaterad | 2018-11-13 |
| Publiceringsdatum | 2018-11-13 |
| Betyg | 4.40/5 Totalt 5 Betyg |
| Utvecklare | https://zerobug.it |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://zerobug.it/ |
| Stödda Språk | en,it |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "SelfScroll",
"version": "1.4",
"description": "This extension allow to automatically scroll the page. Suitable for monitors and kiosks.",
"default_locale": "en",
"icons": {
"16": ".\/icons\/selfscroll_16.png",
"48": ".\/icons\/selfscroll_48.png",
"128": ".\/icons\/selfscroll_128.png"
},
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"storage",
"tabs"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"selfscroll_script.js"
]
}
],
"options_ui": {
"page": "selfscroll_options.html",
"chrome_style": true
},
"background": {
"scripts": [
"selfscroll_background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": ".\/icons\/selfscroll.png",
"default_title": "SelfScroll"
},
"manifest_version": 2
} | |