Open with Pennywise
Adds a context menu item that can send a url to Pennywise
Hvad er Open with Pennywise?
Open with Pennywise er en Chrome-udvidelse udviklet af alxwrd, og dens hovedfunktion er "Adds a context menu item that can send a url to Pennywise".
Udvidelsesskærmbilleder
Download Open with Pennywise-udvidelses-CRX-fil
Download Open with Pennywise-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | fhjdagpiceeimbmhamgebiflkjibgbkk |
| Officiel URL | https://chrome.google.com/webstore/detail/open-with-pennywise/fhjdagpiceeimbmhamgebiflkjibgbkk |
| Beskrivelse | Adds a context menu item that can send a url to Pennywise |
| Filstørrelse | 244 KB |
| Antal Installationer | 112 |
| Nuværende Version | 1.2 |
| Senest Opdateret | 2019-05-01 |
| Udgivelsesdato | 2019-05-01 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | alxwrd |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/alxwrd/open-with-pennywise#readme |
| Hjælpeside-URL | https://github.com/alxwrd/open-with-pennywise/issues |
| Understøttede Sprog | 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"
}
} | |