Scroll Memory
Remembers the sroll position of the page, great for reading really long pages.
Что такое Scroll Memory?
Scroll Memory - это расширение Chrome, разработанное David Gilbertson, и его основная функция - "Remembers the sroll position of the page, great for reading really long pages.".
Снимки экрана расширения
Скачать файл CRX расширения Scroll Memory
Скачайте файлы расширений Scroll Memory в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Imagine you're reading a very long article. You don't have time to finish it now, but if you leave the page and come back later you'll lose the position you're up to. That's where this spectacularly useful extension comes to your rescue. Just click the icon and BAM, your position on the page will be remembered (on any computer you have Chrome syncing).
Основная информация о расширении
Название | Scroll Memory |
ID | iidnpfiaeiohlkmaehhjoiffcmjclpap |
Официальный URL | https://chromewebstore.google.com/detail/scroll-memory/iidnpfiaeiohlkmaehhjoiffcmjclpap |
Описание | Remembers the sroll position of the page, great for reading really long pages. |
Размер файла | 13.69 KB |
Количество установок | 1,025 |
Текущая Версия | 0.1.6 |
Последнее Обновление | 2014-05-20 |
Дата публикации | 2014-05-20 |
Рейтинг | 4.09/5 Всего 23 оценок |
Разработчик | David Gilbertson |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Scroll Memory", "version": "0.1.6", "manifest_version": 2, "description": "Remembers the sroll position of the page, great for reading really long pages.", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "permissions": [ "storage" ], "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "browser_action": { "default_icon": { "19": "images\/icon-19-off.png", "38": "images\/icon-38-off.png" }, "default_title": "scroll memory" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ] } |