Open with Pennywise
Adds a context menu item that can send a url to Pennywise
Co to jest Open with Pennywise?
Open with Pennywise to rozszerzenie Chrome opracowane przez alxwrd, a jego główną funkcją jest „Adds a context menu item that can send a url to Pennywise”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Open with Pennywise
Pobierz pliki rozszerzeń Open with Pennywise 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
A Chrome/Firefox extension to send a url to Pennywise via right click. Works great with Pennywise's (https://github.com/kamranahmedse/pennywise#readme) auto-embed videos feature for Youtube, Vimeo, Twitch, and Daily Motion. Requires Pennywise to be installed and running.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | fhjdagpiceeimbmhamgebiflkjibgbkk |
Oficjalny URL | https://chrome.google.com/webstore/detail/open-with-pennywise/fhjdagpiceeimbmhamgebiflkjibgbkk |
Opis | Adds a context menu item that can send a url to Pennywise |
Rozmiar pliku | 244 KB |
Liczba instalacji | 112 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2019-05-01 |
Data Publikacji | 2019-05-01 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | alxwrd |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/alxwrd/open-with-pennywise#readme |
Adres URL Strony Pomocy | https://github.com/alxwrd/open-with-pennywise/issues |
Obsługiwane Języki | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Open with Pennywise", "author": "Alex Ward ([email protected])", "homepage_url": "https:\/\/github.com\/alxwrd\/open-with-pennywise", "version": "1.2", "description": "Adds a context menu item that can send a url to Pennywise", "browser_action": { "default_area": "navbar", "default_icon": { "16": "icon\/pennywise-16.png", "32": "icon\/pennywise-32.png", "48": "icon\/pennywise-48.png" } }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "contextMenus", "webRequest", "*:\/\/localhost:6280\/*" ], "icons": { "16": "icon\/pennywise-16.png", "32": "icon\/pennywise-32.png", "48": "icon\/pennywise-48.png" } } |