No More Amazon Reviews

This is an extension that hides ratings and reviews on the Amazon site and other sites.

No More Amazon Reviewsคืออะไร?

No More Amazon Reviews เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.analogsoft.jp และคุณลักษณะหลักของมันคือ "This is an extension that hides ratings and reviews on the Amazon site and other sites."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย No More Amazon Reviews

ดาวน์โหลดไฟล์ส่วนขยาย No More Amazon Reviews ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        What's this extension?
- Hides all customer review information on the Amazon site and other sites.
- Disallow filtering by reviews (in part).
- Disables sorting by reviews (in part).
- Easily toggle functions on and off for each tab.
- Does not work on non-target sites.
- Toggle the target/non-target status for each target site.
- Target Sites
	- Amazon
	- Lemino

What's new?
- Extendable to sites other than Amazon.
- Lemino site is now supported.

Details and Operation
- New pages and new tabs will start in a working state (Can be changed in settings).
- If the URL loaded is a target site, such as Amazon, it will be automatically hidden.
- Alternative text will be displayed in the hidden location.
- The wording of the alternative text can be set as desired on the options page.
- Display the number of hidden locations on the page in the action button of the extension.
- Clicking the action button will temporarily stop hiding the page. Clicking it again will hide it.
- Hide on/off is remembered for each tab.
- On non-target sites, the action button icons are always in the hidden suspended state and are not clickable.
- You can report pages where hiding is not working properly by using the "Report the bug page" function in the right-click menu of the action button. The report may result in subsequent improvements.
- Except for alternative text and other settings and reports of faulty pages, we do not store or transmit any of the usage data.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ No More Amazon Reviews No More Amazon Reviews
ID jjabhglbnkofnmllklbpgldcgohkkpfn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/no-more-amazon-reviews/jjabhglbnkofnmllklbpgldcgohkkpfn
คำอธิบาย This is an extension that hides ratings and reviews on the Amazon site and other sites.
ขนาดไฟล์ 70.85 KB
จำนวนการติดตั้ง 147
เวอร์ชันปัจจุบัน 5.0.0
อัปเดตครั้งล่าสุด 2023-05-01
วันที่เผยแพร่ 2021-11-26
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://www.analogsoft.jp
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.analogsoft.jp/en/products/no-more-amazon-reviews/
URL หน้าช่วยเหลือ https://www.analogsoft.jp/en/about-us/contact/
URL หน้านโยบายความเป็นส่วนตัว https://www.analogsoft.jp/about-us/privacy-policy
ภาษาที่รองรับ de,en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_ext_name__",
    "short_name": "__MSG_ext_short_name__",
    "author": "__MSG_ext_author__",
    "version": "5.0.0",
    "manifest_version": 3,
    "default_locale": "en",
    "permissions": [
        "storage",
        "contextMenus",
        "tabs"
    ],
    "description": "__MSG_ext_desc__",
    "homepage_url": "https:\/\/www.analogsoft.jp\/products\/no-more-amazon-reviews\/",
    "icons": {
        "16": "icons\/NoMoreAmazonReview_Icon_16.png",
        "32": "icons\/NoMoreAmazonReview_Icon_32.png",
        "48": "icons\/NoMoreAmazonReview_Icon_48.png",
        "96": "icons\/NoMoreAmazonReview_Icon_96.png",
        "128": "icons\/NoMoreAmazonReview_Icon_128.png"
    },
    "options_page": "options.html",
    "action": {
        "default_icon": {
            "19": "icons\/NoMoreAmazonReview_Icon_19.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "commons.js",
                "content_script.js"
            ],
            "matches": [
                "https:\/\/*.amazon.com\/*",
                "https:\/\/*.amazon.ae\/*",
                "https:\/\/*.amazon.it\/*",
                "https:\/\/*.amazon.in\/*",
                "https:\/\/*.amazon.eg\/*",
                "https:\/\/*.amazon.com.au\/*",
                "https:\/\/*.amazon.nl\/*",
                "https:\/\/*.amazon.ca\/*",
                "https:\/\/*.amazon.sa\/*",
                "https:\/\/*.amazon.sg\/*",
                "https:\/\/*.amazon.se\/*",
                "https:\/\/*.amazon.es\/*",
                "https:\/\/*.amazon.de\/*",
                "https:\/\/*.amazon.com.tr\/*",
                "https:\/\/*.amazon.com.br\/*",
                "https:\/\/*.amazon.fr\/*",
                "https:\/\/*.amazon.pl\/*",
                "https:\/\/*.amazon.com.mx\/*",
                "https:\/\/*.amazon.co.uk\/*",
                "https:\/\/*.amazon.cn\/*",
                "https:\/\/*.amazon.co.jp\/*",
                "https:\/\/*.ssl-images-amazon.com\/*",
                "https:\/\/*.amazon-adsystem.com\/*",
                "https:\/\/*.cloudfront.net\/*",
                "https:\/\/*.lemino.docomo.ne.jp\/*"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}