StackOverview
View quick stats about StackOverflow and StackExchange posts from Google search results
Co to jest StackOverview?
StackOverview to rozszerzenie Chrome opracowane przez Jason Wang, a jego główną funkcją jest „View quick stats about StackOverflow and StackExchange posts from Google search results”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia StackOverview
Pobierz pliki rozszerzeń StackOverview w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | oihjaeffdklalbagimogdhokoaidmain |
Oficjalny URL | https://chrome.google.com/webstore/detail/stackoverview/oihjaeffdklalbagimogdhokoaidmain |
Opis | View quick stats about StackOverflow and StackExchange posts from Google search results |
Rozmiar pliku | 5.78 KB |
Liczba instalacji | 44 |
Aktualna Wersja | 1.0.4 |
Ostatnia Aktualizacja | 2015-01-29 |
Data Publikacji | 2015-01-29 |
Ocena | 4.83/5 Łącznie 6 Oceny |
Deweloper | Jason Wang |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |