ScrollMark (Autosave Scroll Position)

ScrollMark is a small yet intuitive extension created to save you time and effort. It's frustrating when you return to a long…

Что такое ScrollMark (Autosave Scroll Position)?

ScrollMark (Autosave Scroll Position) - это расширение Chrome, разработанное suresh.falor, и его основная функция - "ScrollMark is a small yet intuitive extension created to save you time and effort. It's frustrating when you return to a long…".

Скачать файл CRX расширения ScrollMark (Autosave Scroll Position)

Скачайте файлы расширений ScrollMark (Autosave Scroll Position) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        ScrollMark is a small yet intuitive extension created to save you time and effort. 

It's frustrating when you return to a long article, blog post, or online reference, only to find that you've lost your original position. 

Simply click on the ScrollMark icon at the top next to the URL bar once the page loads to scroll down to where you left off. It's that simple!

As always, I welcome your suggestions and criticisms on how to make this better.

-- Rohit                    

Основная информация о расширении

Название ScrollMark (Autosave Scroll Position) ScrollMark (Autosave Scroll Position)
ID gekidlkidjohjompjafiphdpgejjgklo
Официальный URL https://chrome.google.com/webstore/detail/scrollmark-autosave-scrol/gekidlkidjohjompjafiphdpgejjgklo
Описание ScrollMark is a small yet intuitive extension created to save you time and effort. It's frustrating when you return to a long…
Размер файла 47.08 KB
Количество установок 465
Текущая Версия 0.2
Последнее Обновление 2015-04-24
Дата публикации 2015-04-24
Рейтинг 2.90/5 Всего 29 оценок
Разработчик suresh.falor
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ScrollMark (Autosave Scroll Position)",
    "version": "0.2",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "browser_action": {
        "default_icon": "logo.png"
    }
}