Open with Pennywise
Adds a context menu item that can send a url to Pennywise
Was ist Open with Pennywise?
Open with Pennywise ist eine Chrome-Erweiterung, die von alxwrd entwickelt wurde, und ihr Hauptmerkmal ist "Adds a context menu item that can send a url to Pennywise".
Erweiterungsscreenshots
Open with Pennywise-Erweiterungs-CRX-Datei herunterladen
Laden Sie Open with Pennywise-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fhjdagpiceeimbmhamgebiflkjibgbkk |
| Offizielle URL | https://chrome.google.com/webstore/detail/open-with-pennywise/fhjdagpiceeimbmhamgebiflkjibgbkk |
| Beschreibung | Adds a context menu item that can send a url to Pennywise |
| Dateigröße | 244 KB |
| Installationsanzahl | 112 |
| Aktuelle Version | 1.2 |
| Letztes Update | 2019-05-01 |
| Veröffentlichungsdatum | 2019-05-01 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | alxwrd |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/alxwrd/open-with-pennywise#readme |
| Hilfeseite URL | https://github.com/alxwrd/open-with-pennywise/issues |
| Unterstützte Sprachen | 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"
}
} | |