Accurate Meat & Dairy Descriptions

Replaces words relating to meat and dairy with more accurate descriptions - e.g. "Veal" becomes "Dead Baby Cow".

Accurate Meat & Dairy Descriptions là gì?

Accurate Meat & Dairy Descriptions là một tiện ích mở rộng Chrome được phát triển bởi https://jmcooper.net, và tính năng chính của nó là "Replaces words relating to meat and dairy with more accurate descriptions - e.g. "Veal" becomes "Dead Baby Cow".".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Accurate Meat & Dairy Descriptions

Tải xuống các tệp mở rộng Accurate Meat & Dairy Descriptions 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

                        AMDD is a silly chrome extension which replaces words relating to meat and dairy with more accurate descriptions - e.g. "Veal" becomes "Dead Baby Cow". May be enlightening for people who still like to eat dead animals :D Select hardcore mode if you want the unvarnished truth. (e.g. "Dead Cow Baby That Cried Out For His Mother")                    

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

Tên Accurate Meat & Dairy Descriptions Accurate Meat & Dairy Descriptions
ID cjbahjeialnkeelkldjaaimdloclffje
URL Chính Thức https://chromewebstore.google.com/detail/accurate-meat-dairy-descr/cjbahjeialnkeelkldjaaimdloclffje
Mô tả Replaces words relating to meat and dairy with more accurate descriptions - e.g. "Veal" becomes "Dead Baby Cow".
Kích Thước Tệp 9.47 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2017-08-12
Ngày Phát Hành 2017-08-12
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://jmcooper.net
Loại Thanh Toán free
Trang Web Mở Rộng https://jmcooper.net
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Accurate Meat & Dairy Descriptions",
    "description": "Replaces words relating to meat and dairy with more accurate descriptions - e.g. \"Veal\" becomes \"Dead Baby Cow\".",
    "options_page": "options.html",
    "short_name": "AMDD",
    "version": "1.1",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "AMDD-Logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}