StackOverview
View quick stats about StackOverflow and StackExchange posts from Google search results
Что такое StackOverview?
StackOverview - это расширение Chrome, разработанное Jason Wang, и его основная функция - "View quick stats about StackOverflow and StackExchange posts from Google search results".
Снимки экрана расширения
Скачать файл CRX расширения StackOverview
Скачайте файлы расширений StackOverview в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Get information about how many answers a StackOverflow or StackExchange post has and if there is an accepted answer for it straight from your Google search results. A green badge indicates that there is an accepted answer, yellow indicates that there is no accepted answer, and red indicates that there are no answers.
Основная информация о расширении
Название | |
ID | oihjaeffdklalbagimogdhokoaidmain |
Официальный URL | https://chrome.google.com/webstore/detail/stackoverview/oihjaeffdklalbagimogdhokoaidmain |
Описание | View quick stats about StackOverflow and StackExchange posts from Google search results |
Размер файла | 5.78 KB |
Количество установок | 44 |
Текущая Версия | 1.0.4 |
Последнее Обновление | 2015-01-29 |
Дата публикации | 2015-01-29 |
Рейтинг | 4.83/5 Всего 6 оценок |
Разработчик | Jason Wang |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.0.4", "name": "StackOverview", "author": "Jason Wang", "description": "View quick stats about StackOverflow and StackExchange posts from Google search results", "content_scripts": [ { "matches": [ "*:\/\/www.google.com\/*", "*:\/\/www.google.ca\/*" ], "css": [ "style.css" ], "js": [ "index.js" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "http:\/\/*.stackoverflow.com\/*", "https:\/\/*.stackoverflow.com\/*", "http:\/\/*.stackexchange.com\/*", "https:\/\/*.stackexchange.com\/*" ], "icons": { "48": "icons\/so48trans.png", "128": "icons\/so128trans.png" } } |