Open with Pennywise
Adds a context menu item that can send a url to Pennywise
什么是Open with Pennywise?
Open with Pennywise是由alxwrd开发的Chrome扩展程序,该扩展的主要功能是“Adds a context menu item that can send a url to Pennywise”。
扩展截图
下载Open with Pennywise扩展crx文件
下载Open with Pennywise扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | fhjdagpiceeimbmhamgebiflkjibgbkk |
| 官方URL | https://chrome.google.com/webstore/detail/open-with-pennywise/fhjdagpiceeimbmhamgebiflkjibgbkk |
| 简介 | Adds a context menu item that can send a url to Pennywise |
| 文件大小 | 244 KB |
| 安装次数 | 112 |
| 当前版本 | 1.2 |
| 更新时间 | 2019-05-01 |
| 上架时间 | 2019-05-01 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | alxwrd |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/alxwrd/open-with-pennywise#readme |
| 帮助页面URL | https://github.com/alxwrd/open-with-pennywise/issues |
| 支持的语言 | 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"
}
} | |