StoryTracer

Finds the source of original reporting in a story

Что такое StoryTracer?

StoryTracer - это расширение Chrome, разработанное gautamhathi, и его основная функция - "Finds the source of original reporting in a story".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения StoryTracer

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

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

                        StoryTracer identifies the source information that web pages are based upon. When you navigate to a webpage with Story Tracer added to Chrome, StoryTracer will try to identify the source behind the webpage by looking at the links on the page. If a likely source is identified, a popup will appear indicating that the page you are on might be based on content from another page. StoryTracer uses the ground-truth node library.                    

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

Название StoryTracer StoryTracer
ID gaghdhcnngehjkndpgbcocmdkiakagia
Официальный URL https://chromewebstore.google.com/detail/storytracer/gaghdhcnngehjkndpgbcocmdkiakagia
Описание Finds the source of original reporting in a story
Размер файла 842 KB
Количество установок 135
Текущая Версия 0.1.4
Последнее Обновление 2017-11-06
Дата публикации 2017-11-05
Разработчик gautamhathi
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "StoryTracer",
    "description": "Finds the source of original reporting in a story",
    "version": "0.1.4",
    "background": {
        "scripts": [
            "ground-truth-bundle.js",
            "traceStory.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "getUrlFromPage.js"
            ],
            "css": [
                "dialogStyle.css"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}