Grrl Power Comment Highlighter

Highlights new comments on the Grrl Power comic pages when you come back to them.

Grrl Power Comment Highlighter là gì?

Grrl Power Comment Highlighter là một tiện ích mở rộng Chrome được phát triển bởi riking, và tính năng chính của nó là "Highlights new comments on the Grrl Power comic pages when you come back to them.".

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

screenshot

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

Tải xuống các tệp mở rộng Grrl Power Comment Highlighter 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

                        Highlights comments made since your last visit on the grrlpowercomic.com comment pages. Helpful for following the discussion as it happens.


===== Usage =====
At the top and bottom of each comment page, a controls bar is added.
The first time you visit a comic page with the extension installed, it will not highlight any comments, but it will store the current time.

The next time you go back to the page, any comments made since your last visit will be considered "unread" and highlighted in yellow.

If there are less than 10 unread comments, then 'jump'/'anchor' links are also added, to get to the buried replies quickly.

When you are done reading the new comments, click the "Mark Comments Read" button at the bottom (or top), and the stored time will be updated for next time. (This also clears the highlights.)

You can also click the "Reset All Pages", which will do the same thing for all of the comment pages for that comic at once.

If you click on "Edit Read Data", you can edit the stored dates if it's not doing quite what you want. WARNING: The displayed value, and expected input, is in LOCAL time. The timestamp displayed next to each comment is in SERVER time (UTC-0500). Keep this in mind if you get unexpected results.


===== Changelog =====

0.4.11 - Re-fixed it in Chrome :/
0.4.10 - Fixed the script under Firefox/Greasemonkey.
0.4.8 - Added dynamic loading of other comment pages, behind a feature flag. Check the JS console for how to enable.
0.4.7 - Added disable condition for if the script ever gets put on the webpage itself.
Prior - See https://github.com/riking/userscripts/commits/master/


===== Editing =====
Follow these instructions if you don't have trust in me / the chrome web store, or want to make your own edits to the script.

Source is available here: https://github.com/riking/userscripts/blob/master/grrlpowercomic/commentHighlight.user.js

 1. Go to the GitHub link above, and click "Raw".
 2. You will see a bar: "Apps, extensions, and user scripts cannot be added from this website." Click OK, and it will download.
 3. At this point, open the script in your downloads folder for inspection / editing.
 4. Open chrome://extensions
 5. Drag the commentHighlight.user.js file anywhere on the page

You should now be running your edited version. (Make sure to disable the extension if you do this! You should only have 1 running at a time.)

===== Logo Credits =====

The Grrl Power logo, name, and artwork is Copyright© Grrl Power: http://grrlpowercomic.com/

The speech bubble is from Font Awesome, and is used under the SIL Open Font License Version 1.1: http://fontawesome.io/icon/comments-o/

The Droid Sans font is used under the Apache License Version 2.0: https://www.google.com/fonts/specimen/Droid+Sans

The horrible composition is made by me and me alone.

A .xcf file (GIMP) is available with the source.

===== Privacy =====

This extension does not collect any of your data or send any of your data over the network.                    

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

Tên Grrl Power Comment Highlighter Grrl Power Comment Highlighter
ID jdhhpddkhpmceogkidlpdmabhdencejp
URL Chính Thức https://chrome.google.com/webstore/detail/grrl-power-comment-highli/jdhhpddkhpmceogkidlpdmabhdencejp
Mô tả Highlights new comments on the Grrl Power comic pages when you come back to them.
Kích Thước Tệp 51.79 KB
Số Lần Cài Đặt 70
Phiên Bản Hiện Tại 0.4.12
Cập Nhật Lần Cuối 2020-11-19
Ngày Phát Hành 2018-03-24
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển riking
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Grrl Power Comment Highlighter",
    "version": "0.4.12",
    "description": "Highlights new comments on the Grrl Power comic pages when you come back to them.",
    "icons": {
        "128": "icon_128.png"
    },
    "author": "Riking",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/grrlpowercomic.com\/archives\/*",
                "http:\/\/grrlpowercomic.com\/archives\/*\/comment-page-*"
            ],
            "js": [
                "jquery.min.js",
                "commentHighlight.user.js"
            ]
        }
    ]
}