Simple Word Highlighter
This extension highlights words on a webpage as specified by the user
Co to jest Simple Word Highlighter?
Simple Word Highlighter to rozszerzenie Chrome opracowane przez berdinemail, a jego główną funkcją jest „This extension highlights words on a webpage as specified by the user”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Simple Word Highlighter
Pobierz pliki rozszerzeń Simple Word Highlighter 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
This extension allows you highlight words on any website. You can specify which websites to run on You can specify which words to highlight per page You can specify which color you would like to highlight with
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ojmcbcojgmdcdmnidlgjjajoniomibdj |
Oficjalny URL | https://chrome.google.com/webstore/detail/simple-word-highlighter/ojmcbcojgmdcdmnidlgjjajoniomibdj |
Opis | This extension highlights words on a webpage as specified by the user |
Rozmiar pliku | 103 KB |
Liczba instalacji | 926 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2014-10-24 |
Data Publikacji | 2014-10-24 |
Ocena | 3.89/5 Łącznie 9 Oceny |
Deweloper | berdinemail |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple Word Highlighter", "description": "This extension highlights words on a webpage as specified by the user", "version": "1.0", "background": { "scripts": [ "Configure.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery.min.js", "ModifyPage.js" ], "css": [ "Highlight.css" ], "all_frames": true } ], "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ] } |