Akita

Insight into your engagement with Web Monetization

Akita là gì?

Akita là một tiện ích mở rộng Chrome được phát triển bởi esse-dev, và tính năng chính của nó là "Insight into your engagement with Web Monetization".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Akita

Tải xuống các tệp mở rộng Akita dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Akita presents your top visited monetized sites, how much time you’re spending on them, and how much you're contributing (or could contribute) to them. For information on Web Monetization visit https://webmonetization.org/

We submitted this extension as part of the Grant for the Web x DEV.to hackathon. If you're interested, check out our submission post! https://dev.to/esse-dev/akita-get-involved-in-web-monetization-with-or-without-the-price-tag-cd8

We're Open Source! Feel free to check out our repo and even get involved in building Akita: https://github.com/esse-dev/akita

Check out Akita's Privacy Policy here: https://github.com/esse-dev/akita/blob/master/docs/PrivacyPolicy.md

And lastly, check out the project site if you're interested: https://akitaproject.site/

---

If you’re looking to start supporting websites by streaming payment, Akita will give you a good idea of which sites you can directly support through Web Monetization. If you’re already using a Web Monetization payment provider, Akita gives you insight into your contributions to the website by showing you the time spent on the site and the amount of payment streamed as a result.

As Web Monetization becomes more common on websites, you’ll be able to see the evolution through Akita. We hope to see your favourite sites join the Web Monetization community! All of the data collected about your browsing and streamed payments is stored in local browser storage, so all of this information stays in your hands.

Overall, our goal with Akita is to increase Web Monetization exposure and awareness, and to help people understand how Web Monetization fits in with their regular browsing. We want to give people who aren’t using a Web Monetization provider a way to engage in payment streaming. As more Web Monetization providers pop up, users can choose providers that fit their needs based on the browsing data presented by Akita.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Akita Akita
ID phcipgphomfgkenfmjnbmajdiejnlmgg
URL Chính Thức https://chromewebstore.google.com/detail/akita/phcipgphomfgkenfmjnbmajdiejnlmgg
Mô tả Insight into your engagement with Web Monetization
Kích Thước Tệp 277 KB
Số Lần Cài Đặt 42
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2021-06-01
Ngày Phát Hành 2021-01-03
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển esse-dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://akitaproject.site/
URL Trang Trợ Giúp https://github.com/esse-dev/akita/blob/master/README.md
URL Trang Chính Sách Bảo Mật https://github.com/esse-dev/akita/blob/master/docs/PrivacyPolicy.md
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Akita",
    "version": "1.1.1",
    "manifest_version": 2,
    "description": "Insight into your engagement with Web Monetization",
    "icons": {
        "16": "assets\/icons\/icon_16x16.png",
        "48": "assets\/icons\/icon_48x48.png",
        "128": "assets\/icons\/icon_128x128.png"
    },
    "permissions": [
        "storage",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "src\/background_script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/data\/WebMonetizationAsset.js",
                "src\/data\/AkitaPaymentPointerData.js",
                "src\/data\/AkitaOriginVisitData.js",
                "src\/data\/AkitaOriginData.js",
                "src\/data\/AkitaOriginStats.js",
                "src\/data\/storage.js",
                "src\/content_scripts\/content_general.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/content_scripts\/content_origin.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/content_scripts\/content_iframe.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "src\/page_inject_script.js"
    ],
    "browser_action": {
        "default_icon": "assets\/icons\/icon_unmonetized.png",
        "default_popup": "src\/popup\/popup.html",
        "default_title": "Akita"
    }
}