Minerva

Find insights in congress.gov

Minervaคืออะไร?

Minerva เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tangential Solutions และคุณลักษณะหลักของมันคือ "Find insights in congress.gov"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Minerva

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

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

                        Understanding which members cosponsor a bill and their equities can be a time intensive process. 

This extension adds analysis to the cosponsor pages for each piece of legislation on congress.gov. Simply view any cosponsor page (such as https://www.congress.gov/bill/116th-congress/house-bill/1/cosponsors) or House roll call vote (such as http://clerk.house.gov/evs/2019/roll672.xml) and the analysis will automatically be added to the page.

Included are the following:

- A view of the chamber sorted by the partisan voting index of each district/state.
- A geographic view of each district/state.
- A statistical analysis of the average partisanship of the sponsors of the bill, the standard deviation of sponsors, and the most extreme sponsors.
- The ability to view the cosponsors and non-sponsors of each piece of legislation by caucus or committee and a statistical analysis of their membership.
- Tooltips for each member that shows the most recent election results, the partisan voting index of their district/state, and membership in caucuses & committees.

Run the best legislative analysis. Run Minerva.                    

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

ชื่อ Minerva Minerva
ID dgefmnjjcbcehknkfdgjfbefffhkbkdb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/minerva/dgefmnjjcbcehknkfdgjfbefffhkbkdb
คำอธิบาย Find insights in congress.gov
ขนาดไฟล์ 400 KB
จำนวนการติดตั้ง 123
เวอร์ชันปัจจุบัน 2022.02.28.2300
อัปเดตครั้งล่าสุด 2022-03-01
วันที่เผยแพร่ 2020-01-30
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Tangential Solutions
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Minerva",
    "version": "2022.02.28.2300",
    "description": "Find insights in congress.gov",
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.congress.gov\/bill\/*\/cosponsors*"
            ],
            "js": [
                "notification.js",
                "datamodel\/datamodel.js",
                "utility\/html.js",
                "politics\/partisanship.js",
                "map.js",
                "politics\/districtinfo.js",
                "chamber.js",
                "histogram.js",
                "application\/gui.js",
                "scan.js",
                "utility\/color.js",
                "utility\/shapes.js",
                "analysis\/piechart.js"
            ],
            "css": [
                "graphs.css",
                "maps.css",
                "application\/gui.css",
                "notifications.css",
                "utility\/shapes.css"
            ]
        },
        {
            "matches": [
                "*:\/\/clerk.house.gov\/*\/roll*.xml"
            ],
            "js": [
                "notification.js",
                "datamodel\/datamodel.js",
                "utility\/html.js",
                "politics\/partisanship.js",
                "map.js",
                "politics\/districtinfo.js",
                "chamber.js",
                "application\/gui.js",
                "vote-house.js",
                "utility\/color.js",
                "utility\/shapes.js",
                "analysis\/piechart.js"
            ],
            "css": [
                "graphs.css",
                "maps.css",
                "application\/gui.css",
                "notifications.css",
                "utility\/shapes.css",
                "votes.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.senate.gov\/legislative\/*\/roll_call_vote_cfm.cfm*"
            ],
            "js": [
                "map.js",
                "vote-senate.js",
                "chamber.js",
                "utility\/color.js",
                "politics\/partisanship.js",
                "analysis\/piechart.js",
                "politics\/districtinfo.js",
                "utility\/html.js"
            ],
            "css": [
                "graphs.css",
                "maps.css",
                "application\/gui.css",
                "votes.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "member.html",
        "images\/*",
        "data\/members.json",
        "data\/pvi_referals.json",
        "data\/pvi_issue.json",
        "data\/pvi_legislation.json",
        "data\/org_roster.json",
        "data\/org.json",
        "data\/states.json",
        "data\/partisanship.json",
        "tables.css"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/16.png",
            "32": "images\/32.png",
            "48": "images\/48.png",
            "128": "images\/128.png"
        }
    },
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "manifest_version": 2
}