Omnivore List Popup

Show a popup with a list of your Omnivore articles to quickly open or archive.

什麼是Omnivore List Popup?

Omnivore List Popup是由HerrHerrmann開發的Chrome擴展程式,該擴展的主要功能是“Show a popup with a list of your Omnivore articles to quickly open or archive.”。

擴展截圖

screenshot
screenshot

下載Omnivore List Popup擴展crx文件

下載Omnivore List Popup擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Unofficial extension for Omnivore users who want to access their Omnivore items directly in a little popup. This extension is heavily inspired by the original "In My Pocket" extension for Pocket.

Features:
- See all your Omnivore articles in a popup
- Quickly open the original article URL in a new tab by clicking the article
- Keep the popup open by keeping CMD (CTRL on Windows/Linux) pressed while clicking an article
- Archive (or unarchive) articles from the list
- Change the labels of an article
- Open the Omnivore main website
- Use a custom Omnivore API URL (for self-hosted instances)
- More features coming soon!

Setup:
- Get an Omnivore API Key through your Omnivore Account: https://omnivore.app/settings/api
- Install the extension from the Chrome Web Store.
- Go into the extension’s settings and paste your Omnivore API key.
- Launch the extension by clicking the new "Omnivore List Popup" button in your Firefox extension toolbar/dropdown.
- Optional: Add the extension to your always-visible toolbar.

Links:
- Source Code: https://github.com/herrherrmann/omnivore-list-popup
- Issues: https://github.com/herrherrmann/omnivore-list-popup/issues                    

擴展基本資訊

名稱 Omnivore List Popup Omnivore List Popup
ID dnfckbihnohkfoaclfckbcebclmhleni
官方網址 https://chromewebstore.google.com/detail/omnivore-list-popup/dnfckbihnohkfoaclfckbcebclmhleni
簡介 Show a popup with a list of your Omnivore articles to quickly open or archive.
檔案大小 31.49 KB
安裝次數 361
目前版本 1.5.2
更新時間 2024-02-05
上架時間 2023-08-20
評分 4.00/5 共 2 次評分
開發者 HerrHerrmann
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/herrherrmann/omnivore-list-popup
說明頁面URL https://github.com/herrherrmann/omnivore-list-popup/issues
隱私政策頁面URL https://herrherrmann.net/omnivore-list-popup-privacy-policy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Omnivore List Popup",
    "description": "Show a popup with a list of your Omnivore articles to quickly open or archive.",
    "homepage_url": "https:\/\/github.com\/herrherrmann\/omnivore-list-popup",
    "version": "1.5.2",
    "options_ui": {
        "page": "options.html"
    },
    "icons": {
        "48": "icons\/wallet-48.png",
        "96": "icons\/wallet-96.png"
    },
    "manifest_version": 3,
    "action": {
        "default_title": "Omnivore List Popup",
        "default_icon": {
            "64": "icons\/wallet-black.png"
        },
        "theme_icons": [
            {
                "light": "icons\/wallet-black.png",
                "dark": "icons\/wallet-white.png",
                "size": 64
            }
        ],
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/api-prod.omnivore.app\/*"
    ]
}