StumbleUponAwesome

An awesome internet discovery button. Like StumbleUpon, but for developers, tech and science lovers.

StumbleUponAwesomeとは何ですか?

StumbleUponAwesomeはVyacheslav Basharovによって開発されたChromeの拡張機能で、その主な機能は「An awesome internet discovery button. Like StumbleUpon, but for developers, tech and science lovers.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

StumbleUponAwesome拡張機能のCRXファイルをダウンロード

StumbleUponAwesome拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        StumbleUponAwesome is an internet discovery button, showing you awesome and interesting links from curated lists of content - on everything and anything that sparks curiosity. 

There are 57,089 unique sites from 595 awesome lists on Github, made possible by contributors. There's some hidden gems waiting in there. 

The list is regularly being curated and maintained.

Feedback and suggestions welcome!

New in 1.2.0:
- Added 2,328 new URLs and 12 new topics including Theoretical Computer Science, Neovim, Youtubers, Robotic Tooling, WebXR, Veganism and more! 
- Cleanup of broken and outdated URLs. 

New in 1.1.2:
- Added 4,500 new URLs and 12 new topics including Scientific Writing and Discord Communities.

New in 1.1.0:
- Down the Rabbit Hole! If you've stumbled on something worth digging into, there's a new fancy button to stay stumbling on the same topic. 

New in 1.0.6:
- Fixed new tab opening after idle time instead of using existing stumble tab
- Multiple browser windows (only stumble in currently focused window)

New in 1.0.5:
- PDF links now included
- Overlay shows link source

New in 1.0.4:
- Bug fixes

New in 1.0.3:
-Welcome UI and stumble counter
- New permission required to display the overlay

New in 1.0.2: 
- New icon animation on stumble                    

拡張機能の基本情報

名前 StumbleUponAwesome StumbleUponAwesome
ID dhfmgppomdaagdcbpccdfjpopgikcdge
公式URL https://chromewebstore.google.com/detail/stumbleuponawesome/dhfmgppomdaagdcbpccdfjpopgikcdge
説明 An awesome internet discovery button. Like StumbleUpon, but for developers, tech and science lovers.
ファイルサイズ 1.85 MB
インストール数 1,449
現在のバージョン 1.2.2
最終更新日 2022-01-31
公開日 2020-06-26
評価 4.20/5 合計 5 レビュー
開発者 Vyacheslav Basharov
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/basharovV/StumbleUponAwesome
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "StumbleUponAwesome",
    "manifest_version": 2,
    "version": "1.2.2",
    "description": "An awesome internet discovery button. Like StumbleUpon, but for developers, tech and science lovers.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "images\/icon_16.png",
        "images\/icon_32.png",
        "images\/icon_128.png",
        "images\/rabbithole.gif",
        "images\/rabbithole.png",
        "images\/rabbithole_small.png",
        "images\/spiral.png",
        "images\/close.svg"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+Shift+S",
                "mac": "Alt+Shift+S",
                "chromeos": "Alt+Shift+S",
                "linux": "Alt+Shift+S"
            }
        }
    }
}