mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-05 14:59:43 +07:00
* add sample for catifier that replaces every jpg image on web by another cat image * add readme for catifier * add section for set/get badge text color * add usage of isEnabled,getBadgeTextColor and setBadgeTextColor * capitalize button text * use single quote and update badge text to test * use <all_urls> host_permission
16 lines
417 B
JSON
16 lines
417 B
JSON
{
|
|
"name": "Catifier",
|
|
"version": "1.0",
|
|
"description": "Replace every image by a cat's image in a website you visit",
|
|
"permissions": ["declarativeNetRequest"],
|
|
"host_permissions": ["<all_urls>"],
|
|
"declarative_net_request": {
|
|
"rule_resources": [{
|
|
"id": "ruleset_1",
|
|
"enabled": true,
|
|
"path": "rules.json"
|
|
}]
|
|
},
|
|
|
|
"manifest_version": 3
|
|
} |